Package org.stellar.sdk.xdr
Enum Class PaymentResultCode
- All Implemented Interfaces:
Serializable
,Comparable<PaymentResultCode>
,Constable
PaymentResultCode's original definition in the XDR file is:
enum PaymentResultCode { // codes considered as "success" for the operation PAYMENT_SUCCESS = 0, // payment successfully completed // codes considered as "failure" for the operation PAYMENT_MALFORMED = -1, // bad input PAYMENT_UNDERFUNDED = -2, // not enough funds in source account PAYMENT_SRC_NO_TRUST = -3, // no trust line on source account PAYMENT_SRC_NOT_AUTHORIZED = -4, // source not authorized to transfer PAYMENT_NO_DESTINATION = -5, // destination account does not exist PAYMENT_NO_TRUST = -6, // destination missing a trust line for asset PAYMENT_NOT_AUTHORIZED = -7, // destination not authorized to hold asset PAYMENT_LINE_FULL = -8, // destination would go above their limit PAYMENT_NO_ISSUER = -9 // missing issuer on asset };
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic PaymentResultCode
decode
(XdrDataInputStream stream) void
encode
(XdrDataOutputStream stream) static PaymentResultCode
fromXdrBase64
(String xdr) static PaymentResultCode
fromXdrByteArray
(byte[] xdr) int
getValue()
default String
default byte[]
static PaymentResultCode
Returns the enum constant of this class with the specified name.static PaymentResultCode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
PAYMENT_SUCCESS
-
PAYMENT_MALFORMED
-
PAYMENT_UNDERFUNDED
-
PAYMENT_SRC_NO_TRUST
-
PAYMENT_SRC_NOT_AUTHORIZED
-
PAYMENT_NO_DESTINATION
-
PAYMENT_NO_TRUST
-
PAYMENT_NOT_AUTHORIZED
-
PAYMENT_LINE_FULL
-
PAYMENT_NO_ISSUER
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue() -
decode
- Throws:
IOException
-
encode
- Throws:
IOException
-
fromXdrBase64
- Throws:
IOException
-
fromXdrByteArray
- Throws:
IOException
-
toXdrBase64
- Throws:
IOException
-
toXdrByteArray
- Throws:
IOException
-