Class BucketEntry

java.lang.Object
org.stellar.sdk.xdr.BucketEntry

public class BucketEntry extends Object
BucketEntry's original definition in the XDR file is:
 union BucketEntry switch (BucketEntryType type)
 {
 case LIVEENTRY:
 case INITENTRY:
     LedgerEntry liveEntry;

 case DEADENTRY:
     LedgerKey deadEntry;
 case METAENTRY:
     BucketMetadata metaEntry;
 };