Uses of Class
org.apache.hadoop.hbase.KeyValue.Type

Packages that use KeyValue.Type
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.codec.prefixtree.decode   
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
 

Uses of KeyValue.Type in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase that return KeyValue.Type
static KeyValue.Type KeyValue.Type.codeToType(byte b)
          Cannot rely on enum ordinals .
static KeyValue.Type KeyValue.Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static KeyValue.Type[] KeyValue.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.hadoop.hbase with parameters of type KeyValue.Type
static KeyValue KeyValueTestUtil.create(String row, String family, String qualifier, long timestamp, KeyValue.Type type, String value)
           
static Cell CellUtil.createCell(byte[] row, byte[] family, byte[] qualifier, long timestamp, KeyValue.Type type, byte[] value, byte[] tags)
           
 

Constructors in org.apache.hadoop.hbase with parameters of type KeyValue.Type
KeyValue(byte[] row, byte[] family, byte[] qualifier, int qoffset, int qlength, long timestamp, KeyValue.Type type, byte[] value, int voffset, int vlength, byte[] tags)
           
KeyValue(byte[] row, byte[] family, byte[] qualifier, int qoffset, int qlength, long timestamp, KeyValue.Type type, byte[] value, int voffset, int vlength, List<Tag> tags)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, byte[] family, byte[] qualifier, long timestamp, KeyValue.Type type)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, byte[] family, byte[] qualifier, long timestamp, KeyValue.Type type, byte[] value)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, byte[] family, byte[] qualifier, long timestamp, KeyValue.Type type, byte[] value, byte[] tags)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, byte[] family, byte[] qualifier, long timestamp, KeyValue.Type type, byte[] value, List<Tag> tags)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] buffer, int boffset, byte[] row, int roffset, int rlength, byte[] family, int foffset, int flength, byte[] qualifier, int qoffset, int qlength, long timestamp, KeyValue.Type type, byte[] value, int voffset, int vlength, Tag[] tags)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, int roffset, int rlength, byte[] family, int foffset, int flength, byte[] qualifier, int qoffset, int qlength, long timestamp, KeyValue.Type type, byte[] value, int voffset, int vlength)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, int roffset, int rlength, byte[] family, int foffset, int flength, byte[] qualifier, int qoffset, int qlength, long timestamp, KeyValue.Type type, byte[] value, int voffset, int vlength, byte[] tags, int tagsOffset, int tagsLength)
           
KeyValue(byte[] row, int roffset, int rlength, byte[] family, int foffset, int flength, byte[] qualifier, int qoffset, int qlength, long timestamp, KeyValue.Type type, byte[] value, int voffset, int vlength, List<Tag> tags)
          Constructs KeyValue structure filled with specified values.
KeyValue(byte[] row, int roffset, int rlength, byte[] family, int foffset, int flength, ByteBuffer qualifier, long ts, KeyValue.Type type, ByteBuffer value, List<Tag> tags)
           
KeyValue(byte[] row, long timestamp, KeyValue.Type type)
          Constructs KeyValue structure filled with null value.
KeyValue(int rlength, int flength, int qlength, long timestamp, KeyValue.Type type, int vlength)
          Constructs an empty KeyValue structure, with specified sizes.
KeyValue(int rlength, int flength, int qlength, long timestamp, KeyValue.Type type, int vlength, int tagsLength)
          Constructs an empty KeyValue structure, with specified sizes.
 

Uses of KeyValue.Type in org.apache.hadoop.hbase.codec.prefixtree.decode
 

Fields in org.apache.hadoop.hbase.codec.prefixtree.decode declared as KeyValue.Type
static KeyValue.Type PrefixTreeCell.DEFAULT_TYPE
           
protected  KeyValue.Type PrefixTreeCell.type
           
static KeyValue.Type[] PrefixTreeCell.TYPES
          static
 

Uses of KeyValue.Type in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf that return KeyValue.Type
static KeyValue.Type ProtobufUtil.fromDeleteType(ClientProtos.MutationProto.DeleteType type)
          Convert a protocol buffer DeleteType to delete KeyValue type.
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type KeyValue.Type
static ClientProtos.MutationProto.DeleteType ProtobufUtil.toDeleteType(KeyValue.Type type)
          Convert a delete KeyValue type to protocol buffer DeleteType.
 



Copyright © 2015 The Apache Software Foundation. All rights reserved.