org.bitcoinj.wallet
Enum Protos.Key.Type

java.lang.Object
  extended by java.lang.Enum<Protos.Key.Type>
      extended by org.bitcoinj.wallet.Protos.Key.Type
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<Protos.Key.Type>
Enclosing class:
Protos.Key

public static enum Protos.Key.Type
extends Enum<Protos.Key.Type>
implements com.google.protobuf.ProtocolMessageEnum

Protobuf enum wallet.Key.Type


Enum Constant Summary
ENCRYPTED_SCRYPT_AES
          ENCRYPTED_SCRYPT_AES = 2;
ORIGINAL
          ORIGINAL = 1;
 
Field Summary
static int ENCRYPTED_SCRYPT_AES_VALUE
          ENCRYPTED_SCRYPT_AES = 2;
static int ORIGINAL_VALUE
          ORIGINAL = 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.Key.Type> internalGetValueMap()
           
static Protos.Key.Type valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
           
static Protos.Key.Type valueOf(int value)
           
static Protos.Key.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Protos.Key.Type[] 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

ORIGINAL

public static final Protos.Key.Type ORIGINAL
ORIGINAL = 1;
 Unencrypted - Original bitcoin secp256k1 curve
 


ENCRYPTED_SCRYPT_AES

public static final Protos.Key.Type ENCRYPTED_SCRYPT_AES
ENCRYPTED_SCRYPT_AES = 2;
 Encrypted with Scrypt and AES - - Original bitcoin secp256k1 curve
 

Field Detail

ORIGINAL_VALUE

public static final int ORIGINAL_VALUE
ORIGINAL = 1;
 Unencrypted - Original bitcoin secp256k1 curve
 

See Also:
Constant Field Values

ENCRYPTED_SCRYPT_AES_VALUE

public static final int ENCRYPTED_SCRYPT_AES_VALUE
ENCRYPTED_SCRYPT_AES = 2;
 Encrypted with Scrypt and AES - - Original bitcoin secp256k1 curve
 

See Also:
Constant Field Values
Method Detail

values

public static Protos.Key.Type[] 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.Key.Type c : Protos.Key.Type.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.Key.Type 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.Key.Type valueOf(int value)

internalGetValueMap

public static com.google.protobuf.Internal.EnumLiteMap<Protos.Key.Type> 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.Key.Type valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)


Copyright © 2014. All rights reserved.