Enum FixedParameters.WalletError
- java.lang.Object
-
- java.lang.Enum<FixedParameters.WalletError>
-
- com.h2tcoin.takamakachain.globalContext.FixedParameters.WalletError
-
- All Implemented Interfaces:
Serializable
,Comparable<FixedParameters.WalletError>
- Enclosing class:
- FixedParameters
public static enum FixedParameters.WalletError extends Enum<FixedParameters.WalletError>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CRYPTO
INIZIALIZE
LOCKED
PKEY_READ
PKEY_UNLOCK
RECOVERY_WORDS
RESTORE
SETUP
WALLET_IO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
String
getDescription()
String
toString()
static FixedParameters.WalletError
valueOf(String name)
Returns the enum constant of this type with the specified name.static FixedParameters.WalletError[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INIZIALIZE
public static final FixedParameters.WalletError INIZIALIZE
-
CRYPTO
public static final FixedParameters.WalletError CRYPTO
-
PKEY_READ
public static final FixedParameters.WalletError PKEY_READ
-
PKEY_UNLOCK
public static final FixedParameters.WalletError PKEY_UNLOCK
-
WALLET_IO
public static final FixedParameters.WalletError WALLET_IO
-
RECOVERY_WORDS
public static final FixedParameters.WalletError RECOVERY_WORDS
-
SETUP
public static final FixedParameters.WalletError SETUP
-
LOCKED
public static final FixedParameters.WalletError LOCKED
-
RESTORE
public static final FixedParameters.WalletError RESTORE
-
-
Method Detail
-
values
public static FixedParameters.WalletError[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FixedParameters.WalletError c : FixedParameters.WalletError.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FixedParameters.WalletError valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDescription
public String getDescription()
-
getCode
public int getCode()
-
toString
public String toString()
- Overrides:
toString
in classEnum<FixedParameters.WalletError>
-
-