Package org.stellar.sdk.xdr
Enum Class ClaimantType
- All Implemented Interfaces:
Serializable,Comparable<ClaimantType>,Constable,XdrElement
ClaimantType's original definition in the XDR file is:
enum ClaimantType
{
CLAIMANT_TYPE_V0 = 0
};
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields inherited from interface org.stellar.sdk.xdr.XdrElement
gson -
Method Summary
Modifier and TypeMethodDescriptionstatic ClaimantTypedecode(XdrDataInputStream stream) static ClaimantTypedecode(XdrDataInputStream stream, int maxDepth) voidencode(XdrDataOutputStream stream) Encodes this value to XDR and writes it to the provided stream.static ClaimantTypestatic ClaimantTypefromXdrBase64(String xdr) static ClaimantTypefromXdrByteArray(byte[] xdr) intgetValue()toJson()Serializes this value to JSON.static ClaimantTypeReturns the enum constant of this class with the specified name.static ClaimantType[]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, valueOfMethods inherited from interface org.stellar.sdk.xdr.XdrElement
toXdrBase64, toXdrByteArray
-
Enum Constant Details
-
CLAIMANT_TYPE_V0
-
-
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
-
decode
- Throws:
IOException
-
encode
Description copied from interface:XdrElementEncodes this value to XDR and writes it to the provided stream.- Specified by:
encodein interfaceXdrElement- Parameters:
stream- the destination XDR output stream- Throws:
IOException- if an I/O error occurs while writing the value
-
fromXdrBase64
- Throws:
IOException
-
fromXdrByteArray
- Throws:
IOException
-
toJson
Description copied from interface:XdrElementSerializes this value to JSON.- Specified by:
toJsonin interfaceXdrElement- Returns:
- the JSON representation of this value
-
fromJson
-