Enum Class ClawbackClaimableBalanceResultCode

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

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

     // codes considered as "failure" for the operation
     CLAWBACK_CLAIMABLE_BALANCE_DOES_NOT_EXIST = -1,
     CLAWBACK_CLAIMABLE_BALANCE_NOT_ISSUER = -2,
     CLAWBACK_CLAIMABLE_BALANCE_NOT_CLAWBACK_ENABLED = -3
 };