Package org.apache.iotdb.commons.path
Interface PathPatternNode.Serializer<T>
-
- Type Parameters:
T- Type of value.
- All Known Implementing Classes:
PathPatternNode.VoidSerializer
- Enclosing class:
- PathPatternNode<V,VSerializer extends PathPatternNode.Serializer<V>>
public static interface PathPatternNode.Serializer<T>Interface to support serialize and deserialize valueSet.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tread(java.nio.ByteBuffer buffer)voidwrite(T t, java.io.DataOutputStream stream)voidwrite(T t, java.nio.ByteBuffer buffer)voidwrite(T t, org.apache.iotdb.tsfile.utils.PublicBAOS stream)
-
-
-
Method Detail
-
write
void write(T t, java.nio.ByteBuffer buffer)
-
write
void write(T t, org.apache.iotdb.tsfile.utils.PublicBAOS stream) throws java.io.IOException
- Throws:
java.io.IOException
-
write
void write(T t, java.io.DataOutputStream stream) throws java.io.IOException
- Throws:
java.io.IOException
-
read
T read(java.nio.ByteBuffer buffer)
-
-