Enum Class HotArchiveBucketEntryType

java.lang.Object
java.lang.Enum<HotArchiveBucketEntryType>
org.stellar.sdk.xdr.HotArchiveBucketEntryType
All Implemented Interfaces:
Serializable, Comparable<HotArchiveBucketEntryType>, Constable

public enum HotArchiveBucketEntryType extends Enum<HotArchiveBucketEntryType>
HotArchiveBucketEntryType's original definition in the XDR file is:
 enum HotArchiveBucketEntryType
 {
     HOT_ARCHIVE_METAENTRY = -1, // Bucket metadata, should come first.
     HOT_ARCHIVE_ARCHIVED = 0,   // Entry is Archived
     HOT_ARCHIVE_LIVE = 1,       // Entry was previously HOT_ARCHIVE_ARCHIVED, or HOT_ARCHIVE_DELETED, but
                                 // has been added back to the live BucketList.
                                 // Does not need to be persisted.
     HOT_ARCHIVE_DELETED = 2     // Entry deleted (Note: must be persisted in archive)
 };