public static enum MBFunction.FunctionType extends Enum<MBFunction.FunctionType>
Enum Constant and Description |
---|
CATEGORICAL
Functions return the output value of the stop equal to the function input.
|
EXPONENTIAL
Functions generate an output by interpolating between stops just less than and just
greater than the function input.
|
IDENTITY
Functions return their input as their output.
|
INTERVAL
Functions return the output value of the stop just less than the function input.
|
Modifier and Type | Method and Description |
---|---|
static MBFunction.FunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MBFunction.FunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MBFunction.FunctionType IDENTITY
public static final MBFunction.FunctionType EXPONENTIAL
This is the default function type for continuous value (such as color or line width).
Maps to Interpolate
, requiring use of FilterFunction_pow
for base
other that 1.
public static final MBFunction.FunctionType INTERVAL
This is the default function type for enums values (such as line_cap).
Maps to CategorizeFunction
.
public static final MBFunction.FunctionType CATEGORICAL
Maps to RecodeFunction
.
public static MBFunction.FunctionType[] values()
for (MBFunction.FunctionType c : MBFunction.FunctionType.values()) System.out.println(c);
public static MBFunction.FunctionType 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 © 1996–2022 Geotools. All rights reserved.