Interface SequenceFormat
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DefaultSequenceFormat
public interface SequenceFormat extends Serializable
Interface for convertingTuple
objects to HDFS sequence file key-value pairs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
key(Tuple tuple)
Given a tuple, return the key that should be written to the sequence file.Class
keyClass()
Key class used by implementation (e.g.Object
value(Tuple tuple)
Given a tuple, return the value that should be written to the sequence file.Class
valueClass()
Value class used by implementation (e.g.
-