Interface ScanInterpreter
-
- All Known Implementing Classes:
DefaultScanInterpreter,HexFormatter,HexScanInterpreter
public interface ScanInterpreterA simple interface for creating shell plugins that translate the range and column arguments for the shell's scan command.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.hadoop.io.TextinterpretBeginRow(org.apache.hadoop.io.Text row)org.apache.hadoop.io.TextinterpretColumnFamily(org.apache.hadoop.io.Text cf)org.apache.hadoop.io.TextinterpretColumnQualifier(org.apache.hadoop.io.Text cq)org.apache.hadoop.io.TextinterpretEndRow(org.apache.hadoop.io.Text row)org.apache.hadoop.io.TextinterpretRow(org.apache.hadoop.io.Text row)
-
-
-
Method Detail
-
interpretRow
org.apache.hadoop.io.Text interpretRow(org.apache.hadoop.io.Text row)
-
interpretBeginRow
org.apache.hadoop.io.Text interpretBeginRow(org.apache.hadoop.io.Text row)
-
interpretEndRow
org.apache.hadoop.io.Text interpretEndRow(org.apache.hadoop.io.Text row)
-
interpretColumnFamily
org.apache.hadoop.io.Text interpretColumnFamily(org.apache.hadoop.io.Text cf)
-
interpretColumnQualifier
org.apache.hadoop.io.Text interpretColumnQualifier(org.apache.hadoop.io.Text cq)
-
-