org.bitcoinj.wallet
Enum Protos.Wallet.EncryptionType

java.lang.Object
  extended by java.lang.Enum<Protos.Wallet.EncryptionType>
      extended by 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.
 


Enum Constant Summary
ENCRYPTED_SCRYPT_AES
          ENCRYPTED_SCRYPT_AES = 2;
UNENCRYPTED
          UNENCRYPTED = 1;
 
Field Summary
static int ENCRYPTED_SCRYPT_AES_VALUE
          ENCRYPTED_SCRYPT_AES = 2;
static int UNENCRYPTED_VALUE
          UNENCRYPTED = 1;
 
Method Summary
static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
           
 com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
           
 int getNumber()
           
 com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
           
static com.google.protobuf.Internal.EnumLiteMap<Protos.Wallet.EncryptionType> internalGetValueMap()
           
static Protos.Wallet.EncryptionType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
           
static Protos.Wallet.EncryptionType valueOf(int value)
           
static Protos.Wallet.EncryptionType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Protos.Wallet.EncryptionType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
 

Field Detail

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
Method Detail

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.