Class LongColumnInterpreter
java.lang.Object
org.apache.hadoop.hbase.coprocessor.ColumnInterpreter<Long,Long,org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg,org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg,org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
org.apache.hadoop.hbase.client.coprocessor.LongColumnInterpreter
@LimitedPrivate("Coprocesssor")
@Evolving
public class LongColumnInterpreter
extends ColumnInterpreter<Long,Long,org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg,org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg,org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
a concrete column interpreter implementation. The cell value is a Long value and its promoted
data type is also a Long value. For computing aggregation function, this class is used to find
the datatype of the cell value. Client is supposed to instantiate it and passed along as a
parameter. See TestAggregateProtocol methods for its sample usage. Its methods handle null
arguments gracefully.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns sum or non null value among (if either of them is null); otherwise returns a null.The response message comes as type S.provides casting opportunity between the data types.int
This takes care if either of arguments are null.double
divideForAvg
(Long l1, Long l2) used for computing average of <S> data values.getCellValueFromProto
(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg q) This method gets the PB message corresponding to the cell typereturns the maximum value for this type TgetPromotedValueFromProto
(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg r) This method gets the promoted type from the proto messageorg.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg
This method gets the PB message corresponding to the cell typeorg.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg
This method gets the PB message corresponding to the promoted typeorg.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg
This method should return any additional data that is needed on the server side to construct the ColumnInterpreter.Returns value of type TReturns incrementvoid
initialize
(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg msg) This method should initialize any field(s) of the ColumnInterpreter with a parsing of the passed message bytes (used on the server side).Returns multiplication
-
Constructor Details
-
LongColumnInterpreter
public LongColumnInterpreter()
-
-
Method Details
-
getValue
Description copied from class:ColumnInterpreter
Returns value of type T- Specified by:
getValue
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg> - Throws:
IOException
-
add
Description copied from class:ColumnInterpreter
Returns sum or non null value among (if either of them is null); otherwise returns a null.- Specified by:
add
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
compare
Description copied from class:ColumnInterpreter
This takes care if either of arguments are null. returns 0 if they are equal or both are null;- > 0 if l1 > l2 or l1 is not null and l2 is null.
- < 0 if l1 < l2 or l1 is null and l2 is not null.
- Specified by:
compare
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
getMaxValue
Description copied from class:ColumnInterpreter
returns the maximum value for this type T- Specified by:
getMaxValue
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
increment
Description copied from class:ColumnInterpreter
Returns increment- Specified by:
increment
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
multiply
Description copied from class:ColumnInterpreter
Returns multiplication- Specified by:
multiply
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
getMinValue
- Specified by:
getMinValue
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
divideForAvg
Description copied from class:ColumnInterpreter
used for computing average of <S> data values. Not providing the divide method that takes two <S> values as it is not needed as of now.- Specified by:
divideForAvg
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
castToReturnType
Description copied from class:ColumnInterpreter
provides casting opportunity between the data types.- Specified by:
castToReturnType
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
castToCellType
Description copied from class:ColumnInterpreter
The response message comes as type S. This will convert/cast it to T. In some sense, performs the opposite ofColumnInterpreter.castToReturnType(Object)
- Specified by:
castToCellType
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
getRequestData
Description copied from class:ColumnInterpreter
This method should return any additional data that is needed on the server side to construct the ColumnInterpreter. The server will pass this to theColumnInterpreter.initialize(P)
method. If there is no ColumnInterpreter specific data (for e.g.,LongColumnInterpreter
) then null should be returned.- Specified by:
getRequestData
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg> - Returns:
- the PB message
-
initialize
Description copied from class:ColumnInterpreter
This method should initialize any field(s) of the ColumnInterpreter with a parsing of the passed message bytes (used on the server side).- Specified by:
initialize
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg>
-
getProtoForCellType
public org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg getProtoForCellType(Long t) Description copied from class:ColumnInterpreter
This method gets the PB message corresponding to the cell type- Specified by:
getProtoForCellType
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg> - Returns:
- the PB message for the cell-type instance
-
getProtoForPromotedType
public org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg getProtoForPromotedType(Long s) Description copied from class:ColumnInterpreter
This method gets the PB message corresponding to the promoted type- Specified by:
getProtoForPromotedType
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg> - Returns:
- the PB message for the promoted-type instance
-
getPromotedValueFromProto
public Long getPromotedValueFromProto(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg r) Description copied from class:ColumnInterpreter
This method gets the promoted type from the proto message- Specified by:
getPromotedValueFromProto
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg> - Returns:
- the promoted-type instance from the PB message
-
getCellValueFromProto
public Long getCellValueFromProto(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg q) Description copied from class:ColumnInterpreter
This method gets the PB message corresponding to the cell type- Specified by:
getCellValueFromProto
in classColumnInterpreter<Long,
Long, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.EmptyMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg, org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.LongMsg> - Returns:
- the cell-type instance from the PB message
-