public class DoubleSignum extends EvalFunc<java.lang.Double>
Math.signum(double)
.
Given a single data atom it Returns the signum function of the argument.
value
- Double
.Double
register math.jar;
A = load 'mydata' using PigStorage() as ( float1 );
B = foreach A generate float1, math.SIGNUM(float1);
Math.signum(double)
,
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
DoubleSignum() |
Modifier and Type | Method and Description |
---|---|
java.lang.Double |
exec(Tuple input)
java level API
|
Schema |
outputSchema(Schema input)
Report the schema of the output of this UDF.
|
allowCompileTimeCalculation, finish, getArgToFuncMapping, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn
public java.lang.Double exec(Tuple input) throws java.io.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<java.lang.Double>
input
- Schema of the inputCopyright © 2007-2012 The Apache Software Foundation