Package org.apache.druid.data.input.impl
Interface InputRowParser<T>
- All Known Subinterfaces:
ByteBufferInputRowParser
- All Known Implementing Classes:
MapInputRowParser,NoopInputRowParser,StringInputRowParser,TransformingInputRowParser,TransformingStringInputRowParser
Deprecated.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.default InputRowDeprecated.parseBatch(T input) Deprecated.Parse an input into list ofInputRow.withParseSpec(ParseSpec parseSpec) Deprecated.
-
Method Details
-
parseBatch
Deprecated.Parse an input into list ofInputRow. List can contains null for rows that should be thrown away, or throwsParseExceptionif the input is unparseable. This method should never return null otherwise lots of things will break. -
parse
Deprecated.Parse an input into anInputRow. Return null if this input should be thrown away, or throwsParseExceptionif the input is unparseable. -
getParseSpec
ParseSpec getParseSpec()Deprecated. -
withParseSpec
Deprecated.
-