Package org.apache.druid.indexer
Class InputRowSerde.StringIndexSerdeTypeHelper
- java.lang.Object
-
- org.apache.druid.indexer.InputRowSerde.StringIndexSerdeTypeHelper
-
- All Implemented Interfaces:
InputRowSerde.IndexSerdeTypeHelper<List<String>>
- Enclosing class:
- InputRowSerde
public static class InputRowSerde.StringIndexSerdeTypeHelper extends Object implements InputRowSerde.IndexSerdeTypeHelper<List<String>>
-
-
Constructor Summary
Constructors Constructor Description StringIndexSerdeTypeHelper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>deserialize(com.google.common.io.ByteArrayDataInput in)org.apache.druid.segment.column.ValueTypegetType()voidserialize(com.google.common.io.ByteArrayDataOutput out, Object value)
-
-
-
Method Detail
-
getType
public org.apache.druid.segment.column.ValueType getType()
- Specified by:
getTypein interfaceInputRowSerde.IndexSerdeTypeHelper<List<String>>
-
serialize
public void serialize(com.google.common.io.ByteArrayDataOutput out, Object value)- Specified by:
serializein interfaceInputRowSerde.IndexSerdeTypeHelper<List<String>>
-
deserialize
public List<String> deserialize(com.google.common.io.ByteArrayDataInput in)
- Specified by:
deserializein interfaceInputRowSerde.IndexSerdeTypeHelper<List<String>>
-
-