public static enum SimpleTransform.Operation extends Enum<SimpleTransform.Operation>
Enum Constant and Description |
---|
add
Adds the specified constant.
|
binarise
Binarises the output around 1.0.
|
div
Divides by the specified constant.
|
exp
Exponentiates the inputs
|
log
Logs the inputs (base_e)
|
mul
Multiplies by the specified constant.
|
sub
Subtracts the specified constant.
|
threshold
Min and max thresholds applied to the input.
|
Modifier and Type | Method and Description |
---|---|
static SimpleTransform.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleTransform.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleTransform.Operation exp
public static final SimpleTransform.Operation log
public static final SimpleTransform.Operation add
public static final SimpleTransform.Operation sub
public static final SimpleTransform.Operation mul
public static final SimpleTransform.Operation div
public static final SimpleTransform.Operation binarise
public static final SimpleTransform.Operation threshold
public static SimpleTransform.Operation[] values()
for (SimpleTransform.Operation c : SimpleTransform.Operation.values()) System.out.println(c);
public static SimpleTransform.Operation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.