Enum Class BucketEntryType

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

public enum BucketEntryType extends Enum<BucketEntryType>
BucketEntryType's original definition in the XDR file is:
 enum BucketEntryType
 {
     METAENTRY =
         -1, // At-and-after protocol 11: bucket metadata, should come first.
     LIVEENTRY = 0, // Before protocol 11: created-or-updated;
                    // At-and-after protocol 11: only updated.
     DEADENTRY = 1,
     INITENTRY = 2 // At-and-after protocol 11: only created.
 };