Enum Class TrustLineFlags

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

public enum TrustLineFlags extends Enum<TrustLineFlags>
TrustLineFlags's original definition in the XDR file is:
 enum TrustLineFlags
 {
     // issuer has authorized account to perform transactions with its credit
     AUTHORIZED_FLAG = 1,
     // issuer has authorized account to maintain and reduce liabilities for its
     // credit
     AUTHORIZED_TO_MAINTAIN_LIABILITIES_FLAG = 2,
     // issuer has specified that it may clawback its credit, and that claimable
     // balances created with its credit may also be clawed back
     TRUSTLINE_CLAWBACK_ENABLED_FLAG = 4
 };
 
  • Enum Constant Details

    • AUTHORIZED_FLAG

      public static final TrustLineFlags AUTHORIZED_FLAG
    • AUTHORIZED_TO_MAINTAIN_LIABILITIES_FLAG

      public static final TrustLineFlags AUTHORIZED_TO_MAINTAIN_LIABILITIES_FLAG
    • TRUSTLINE_CLAWBACK_ENABLED_FLAG

      public static final TrustLineFlags TRUSTLINE_CLAWBACK_ENABLED_FLAG
  • Method Details