public class REGEX_EXTRACT_ALL extends EvalFunc<Tuple>
String RegexExtractAll(String expression, String regex)
.expression
-source string
.regex
-regular expression
.A tuple of matched strings
.Matcher.matches()
instead of
Matcher.find()
(default useMatches=true).DEFINE GREEDY_EXTRACT REGEX_EXTRACT_ALL('false');
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
REGEX_EXTRACT_ALL() |
REGEX_EXTRACT_ALL(String useMatches) |
Modifier and Type | Method and Description |
---|---|
boolean |
allowCompileTimeCalculation()
Whether the UDF should be evaluated at compile time if all inputs are constant.
|
Tuple |
exec(Tuple input)
This callback method must be implemented by all subclasses.
|
List<FuncSpec> |
getArgToFuncMapping()
Allow a UDF to specify type specific implementations of itself.
|
Schema |
outputSchema(Schema input)
Report the schema of the output of this UDF.
|
finish, getCacheFiles, getInputSchema, getLoadCaster, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, needEndOfAllInputProcessing, progress, setEndOfAllInput, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn
public REGEX_EXTRACT_ALL()
public REGEX_EXTRACT_ALL(String useMatches)
public Tuple exec(Tuple input) throws IOException
EvalFunc
exec
in class EvalFunc<Tuple>
input
- the Tuple to be processed.IOException
public Schema outputSchema(Schema input)
EvalFunc
The default implementation interprets the OutputSchema
annotation,
if one is present. Otherwise, it returns null
(no known output schema).
outputSchema
in class EvalFunc<Tuple>
input
- Schema of the inputpublic List<FuncSpec> getArgToFuncMapping() throws FrontendException
EvalFunc
getArgToFuncMapping
in class EvalFunc<Tuple>
FrontendException
public boolean allowCompileTimeCalculation()
EvalFunc
allowCompileTimeCalculation
in class EvalFunc<Tuple>
Copyright © 2007-2017 The Apache Software Foundation