Package org.refcodes.mixin
Interface ValueAccessor<V>
-
- Type Parameters:
V- The type of the value to be used.
- All Known Subinterfaces:
ValueAccessor.ValueProperty<V>
public interface ValueAccessor<V>Provides access to a value property for e.g. key/value-pair.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceValueAccessor.ValueBuilder<V,B extends ValueAccessor.ValueBuilder<V,B>>Provides a builder method for a the property returning the builder for applying multiple build operations.static interfaceValueAccessor.ValueMutator<V>Extends theValueAccessorwith a setter method.static interfaceValueAccessor.ValueProperty<V>Extends theValueAccessorwith a setter method.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VgetValue()Retrieves the value from the value property.
-
-
-
Method Detail
-
getValue
V getValue()
Retrieves the value from the value property.- Returns:
- The value stored by the value property.
-
-