Package org.stellar.sdk.xdr
Enum Class SignerKeyType
- All Implemented Interfaces:
Serializable,Comparable<SignerKeyType>,Constable,XdrElement
SignerKeyType's original definition in the XDR file is:
enum SignerKeyType
{
SIGNER_KEY_TYPE_ED25519 = KEY_TYPE_ED25519,
SIGNER_KEY_TYPE_PRE_AUTH_TX = KEY_TYPE_PRE_AUTH_TX,
SIGNER_KEY_TYPE_HASH_X = KEY_TYPE_HASH_X,
SIGNER_KEY_TYPE_ED25519_SIGNED_PAYLOAD = KEY_TYPE_ED25519_SIGNED_PAYLOAD
};
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields inherited from interface org.stellar.sdk.xdr.XdrElement
gson -
Method Summary
Modifier and TypeMethodDescriptionstatic SignerKeyTypedecode(XdrDataInputStream stream) static SignerKeyTypedecode(XdrDataInputStream stream, int maxDepth) voidencode(XdrDataOutputStream stream) Encodes this value to XDR and writes it to the provided stream.static SignerKeyTypestatic SignerKeyTypefromXdrBase64(String xdr) static SignerKeyTypefromXdrByteArray(byte[] xdr) intgetValue()toJson()Serializes this value to JSON.static SignerKeyTypeReturns the enum constant of this class with the specified name.static SignerKeyType[]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
-
SIGNER_KEY_TYPE_ED25519
-
SIGNER_KEY_TYPE_PRE_AUTH_TX
-
SIGNER_KEY_TYPE_HASH_X
-
SIGNER_KEY_TYPE_ED25519_SIGNED_PAYLOAD
-
-
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
-