Modifier and Type | Method and Description |
---|---|
static MathOp |
MathOp.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MathOp[] |
MathOp.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
TransformProcess.Builder |
TransformProcess.Builder.doubleColumnsMathOp(String newColumnName,
MathOp mathOp,
String... columnNames)
Calculate and add a new double column by performing a mathematical operation on a number of existing columns.
|
TransformProcess.Builder |
TransformProcess.Builder.doubleMathOp(String columnName,
MathOp mathOp,
double scalar)
Perform a mathematical operation (add, subtract, scalar max etc) on the specified double column, with a scalar
|
TransformProcess.Builder |
TransformProcess.Builder.integerColumnsMathOp(String newColumnName,
MathOp mathOp,
String... columnNames)
Calculate and add a new integer column by performing a mathematical operation on a number of existing columns.
|
TransformProcess.Builder |
TransformProcess.Builder.integerMathOp(String columnName,
MathOp mathOp,
int scalar)
Perform a mathematical operation (add, subtract, scalar max etc) on the specified integer column, with a scalar
|
TransformProcess.Builder |
TransformProcess.Builder.longColumnsMathOp(String newColumnName,
MathOp mathOp,
String... columnNames)
Calculate and add a new long column by performing a mathematical operation on a number of existing columns.
|
TransformProcess.Builder |
TransformProcess.Builder.longMathOp(String columnName,
MathOp mathOp,
long scalar)
Perform a mathematical operation (add, subtract, scalar max etc) on the specified long column, with a scalar
|
TransformProcess.Builder |
TransformProcess.Builder.timeMathOp(String columnName,
MathOp mathOp,
long timeQuantity,
TimeUnit timeUnit)
Perform a mathematical operation (add, subtract, scalar min/max only) on the specified time column
|
Modifier and Type | Field and Description |
---|---|
protected MathOp |
BaseColumnsMathOpTransform.mathOp |
Constructor and Description |
---|
BaseColumnsMathOpTransform(String newColumnName,
MathOp mathOp,
String... columns) |
Constructor and Description |
---|
DoubleColumnsMathOpTransform(String newColumnName,
MathOp mathOp,
String... columns) |
DoubleMathOpTransform(String columnName,
MathOp mathOp,
double scalar) |
Constructor and Description |
---|
IntegerColumnsMathOpTransform(String newColumnName,
MathOp mathOp,
String... columns) |
IntegerMathOpTransform(String columnName,
MathOp mathOp,
int scalar) |
Constructor and Description |
---|
LongColumnsMathOpTransform(String newColumnName,
MathOp mathOp,
String... columns) |
LongMathOpTransform(String columnName,
MathOp mathOp,
long scalar) |
Constructor and Description |
---|
TimeMathOpTransform(String columnName,
MathOp mathOp,
long timeQuantity,
TimeUnit timeUnit) |
Copyright © 2016. All rights reserved.