I - input the stop (function) input typeO - output the stop (function) output typepublic class Stop<I,O>
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Stop.CompositeValue<Z extends java.lang.Number,V>
Represents a composite input value for composite functions (eg zoom and feature property value)
|
| Modifier and Type | Field and Description |
|---|---|
I |
in
The input type
|
O |
out
The output type
|
| Modifier and Type | Method and Description |
|---|---|
static <I,O> Stop<I,O> |
stop(I in,
PropertyValue<O> output)
|
static <Z extends java.lang.Number,I,O> |
stop(Z zoom,
I value,
PropertyValue<O> output)
Create a composite
Stop for use in a CompositeFunction |
java.lang.String |
toString() |
public static <I,O> Stop<I,O> stop(I in, PropertyValue<O> output)
I - the input property typeO - the output property typein - the input for the stopoutput - the output for the stopStoppublic static <Z extends java.lang.Number,I,O> Stop<Stop.CompositeValue<Z,I>,O> stop(Z zoom, I value, PropertyValue<O> output)
Stop for use in a CompositeFunctionZ - the zoom typeI - the feature property input typeO - the output property typezoom - the zoom inputvalue - the feature property inputoutput - the output for the stopStopFunction.composite(String, ExponentialStops)public java.lang.String toString()
toString in class java.lang.Object