org.bitcoinj.wallet
Enum Protos.Wallet.EncryptionType
java.lang.Object
java.lang.Enum<Protos.Wallet.EncryptionType>
org.bitcoinj.wallet.Protos.Wallet.EncryptionType
- All Implemented Interfaces:
- com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<Protos.Wallet.EncryptionType>
- Enclosing class:
- Protos.Wallet
public static enum Protos.Wallet.EncryptionType
- extends Enum<Protos.Wallet.EncryptionType>
- implements com.google.protobuf.ProtocolMessageEnum
Protobuf enum wallet.Wallet.EncryptionType
The encryption type of the wallet.
The encryption type is UNENCRYPTED for wallets where the wallet does not support encryption - wallets prior to
encryption support are grandfathered in as this wallet type.
When a wallet is ENCRYPTED_SCRYPT_AES the keys are either encrypted with the wallet password or are unencrypted.
UNENCRYPTED
public static final Protos.Wallet.EncryptionType UNENCRYPTED
UNENCRYPTED = 1;
All keys in the wallet are unencrypted
ENCRYPTED_SCRYPT_AES
public static final Protos.Wallet.EncryptionType ENCRYPTED_SCRYPT_AES
ENCRYPTED_SCRYPT_AES = 2;
All keys are encrypted with a passphrase based KDF of scrypt and AES encryption
UNENCRYPTED_VALUE
public static final int UNENCRYPTED_VALUE
UNENCRYPTED = 1;
All keys in the wallet are unencrypted
- See Also:
- Constant Field Values
ENCRYPTED_SCRYPT_AES_VALUE
public static final int ENCRYPTED_SCRYPT_AES_VALUE
ENCRYPTED_SCRYPT_AES = 2;
All keys are encrypted with a passphrase based KDF of scrypt and AES encryption
- See Also:
- Constant Field Values
values
public static Protos.Wallet.EncryptionType[] 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 (Protos.Wallet.EncryptionType c : Protos.Wallet.EncryptionType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Protos.Wallet.EncryptionType 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 name
NullPointerException - if the argument is null
getNumber
public final int getNumber()
- Specified by:
getNumber in interface com.google.protobuf.Internal.EnumLite- Specified by:
getNumber in interface com.google.protobuf.ProtocolMessageEnum
valueOf
public static Protos.Wallet.EncryptionType valueOf(int value)
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<Protos.Wallet.EncryptionType> internalGetValueMap()
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
valueOf
public static Protos.Wallet.EncryptionType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2014. All rights reserved.