Enum Class RestoreFootprintResultCode

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

public enum RestoreFootprintResultCode extends Enum<RestoreFootprintResultCode>
RestoreFootprintResultCode's original definition in the XDR file is:
 enum RestoreFootprintResultCode
 {
     // codes considered as "success" for the operation
     RESTORE_FOOTPRINT_SUCCESS = 0,

     // codes considered as "failure" for the operation
     RESTORE_FOOTPRINT_MALFORMED = -1,
     RESTORE_FOOTPRINT_RESOURCE_LIMIT_EXCEEDED = -2,
     RESTORE_FOOTPRINT_INSUFFICIENT_REFUNDABLE_FEE = -3
 };