org.hbase.async.generated
Enum ClientPB.MutationProto.DeleteType

java.lang.Object
  extended by java.lang.Enum<ClientPB.MutationProto.DeleteType>
      extended by org.hbase.async.generated.ClientPB.MutationProto.DeleteType
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, Serializable, Comparable<ClientPB.MutationProto.DeleteType>
Enclosing class:
ClientPB.MutationProto

public static enum ClientPB.MutationProto.DeleteType
extends Enum<ClientPB.MutationProto.DeleteType>
implements com.google.protobuf.Internal.EnumLite

Protobuf enum MutationProto.DeleteType


Enum Constant Summary
DELETE_FAMILY
          DELETE_FAMILY = 2;
DELETE_FAMILY_VERSION
          DELETE_FAMILY_VERSION = 3;
DELETE_MULTIPLE_VERSIONS
          DELETE_MULTIPLE_VERSIONS = 1;
DELETE_ONE_VERSION
          DELETE_ONE_VERSION = 0;
 
Field Summary
static int DELETE_FAMILY_VALUE
          DELETE_FAMILY = 2;
static int DELETE_FAMILY_VERSION_VALUE
          DELETE_FAMILY_VERSION = 3;
static int DELETE_MULTIPLE_VERSIONS_VALUE
          DELETE_MULTIPLE_VERSIONS = 1;
static int DELETE_ONE_VERSION_VALUE
          DELETE_ONE_VERSION = 0;
 
Method Summary
 int getNumber()
           
static com.google.protobuf.Internal.EnumLiteMap<ClientPB.MutationProto.DeleteType> internalGetValueMap()
           
static ClientPB.MutationProto.DeleteType valueOf(int value)
           
static ClientPB.MutationProto.DeleteType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClientPB.MutationProto.DeleteType[] 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

DELETE_ONE_VERSION

public static final ClientPB.MutationProto.DeleteType DELETE_ONE_VERSION
DELETE_ONE_VERSION = 0;


DELETE_MULTIPLE_VERSIONS

public static final ClientPB.MutationProto.DeleteType DELETE_MULTIPLE_VERSIONS
DELETE_MULTIPLE_VERSIONS = 1;


DELETE_FAMILY

public static final ClientPB.MutationProto.DeleteType DELETE_FAMILY
DELETE_FAMILY = 2;


DELETE_FAMILY_VERSION

public static final ClientPB.MutationProto.DeleteType DELETE_FAMILY_VERSION
DELETE_FAMILY_VERSION = 3;

Field Detail

DELETE_ONE_VERSION_VALUE

public static final int DELETE_ONE_VERSION_VALUE
DELETE_ONE_VERSION = 0;

See Also:
Constant Field Values

DELETE_MULTIPLE_VERSIONS_VALUE

public static final int DELETE_MULTIPLE_VERSIONS_VALUE
DELETE_MULTIPLE_VERSIONS = 1;

See Also:
Constant Field Values

DELETE_FAMILY_VALUE

public static final int DELETE_FAMILY_VALUE
DELETE_FAMILY = 2;

See Also:
Constant Field Values

DELETE_FAMILY_VERSION_VALUE

public static final int DELETE_FAMILY_VERSION_VALUE
DELETE_FAMILY_VERSION = 3;

See Also:
Constant Field Values
Method Detail

values

public static ClientPB.MutationProto.DeleteType[] 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 (ClientPB.MutationProto.DeleteType c : ClientPB.MutationProto.DeleteType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ClientPB.MutationProto.DeleteType 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

valueOf

public static ClientPB.MutationProto.DeleteType valueOf(int value)

internalGetValueMap

public static com.google.protobuf.Internal.EnumLiteMap<ClientPB.MutationProto.DeleteType> internalGetValueMap()


Copyright © 2010-2015, The Async HBase Authors