Uses of Interface
com.rezzedup.util.valuables.Value
-
-
Uses of Value in com.rezzedup.util.valuables
Subinterfaces of Value in com.rezzedup.util.valuables Modifier and Type Interface Description interfaceAdaptedKeyValue<S,K,O,V>A value that's associated with a key and must be adapted to and from storage.interfaceAdaptedValue<S,O,V>A value that must be adapted to and from storage.interfaceDefaultAdaptedKeyValue<S,K,O,V>A value that's associated with a default fallback, a key, and must be adapted to and from storage.interfaceDefaultAdaptedValue<S,O,V>A value that's associated with a default fallback and must be adapted to and from storage.interfaceDefaultKeyValue<S,K,V>A value associated with a default fallback and a key.interfaceDefaultValue<S,V>A value associated with a default fallback.interfaceKeyValue<S,K,V>A value associated with a particular key.Methods in com.rezzedup.util.valuables that return Value Modifier and Type Method Description static <S,V>
Value<S,V>Value. of(Getter<S,V> getter, Setter<S,V> setter)Creates a newValueby delegating to the provided arguments.Methods in com.rezzedup.util.valuables with parameters of type Value Modifier and Type Method Description static <S,O,V>
AdaptedValue<S,O,V>AdaptedValue. of(Adapter<O,V> adapter, Value<S,O> value)Creates a newAdaptedValueby delegating to the provided arguments.static <S,V>
DefaultValue<S,V>DefaultValue. of(V def, Value<S,V> value)Creates a newDefaultValueby delegating to the provided arguments.
-