Interface Value<V>
-
- Type Parameters:
V- the referenced value type
- All Superinterfaces:
Supplier<V>
- All Known Subinterfaces:
OffsetValue<V>
- All Known Implementing Classes:
OffsetValue.DefaultOffsetValue,OffsetValue.DurationOffsetValue,OffsetValue.InstantOffsetValue,OffsetValue.TemporalOffsetValue,Value.AbstractValue
public interface Value<V> extends Supplier<V>
A mutable reference to some value.- Author:
- Paul Ferraro
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classValue.AbstractValue<V>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidset(V value)Updates the referenced value.
-
-
-
Method Detail
-
set
void set(V value)
Updates the referenced value.- Parameters:
value- the new value.
-
-