Package org.refcodes.mixin
Interface NumberAccessor<V>
-
- Type Parameters:
V- The type of the number to be used.
- All Known Subinterfaces:
NumberAccessor.NumberProperty<V>
public interface NumberAccessor<V>Provides access to a number property for e.g. key / number pair.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceNumberAccessor.NumberBuilder<V,B extends NumberAccessor.NumberBuilder<V,B>>Provides a builder method for a the property returning the builder for applying multiple build operations.static interfaceNumberAccessor.NumberMutator<V>Extends theNumberAccessorwith a setter method.static interfaceNumberAccessor.NumberProperty<V>Extends theNumberAccessorwith a setter method.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VgetNumber()Retrieves the number from the number property.
-
-
-
Method Detail
-
getNumber
V getNumber()
Retrieves the number from the number property.- Returns:
- The number stored by the number property.
-
-