Interface NumberAccessor.NumberMutator<V>

Type Parameters:
V - The type of the number property.
All Known Subinterfaces:
NumberAccessor.NumberProperty<V>
Enclosing interface:
NumberAccessor<V>

public static interface NumberAccessor.NumberMutator<V>
Extends the NumberAccessor with a setter method.
  • Method Summary

    Modifier and Type Method Description
    void setNumber​(V aNumber)
    Sets the number for the number property.
  • Method Details

    • setNumber

      void setNumber​(V aNumber)
      Sets the number for the number property.
      Parameters:
      aNumber - The number to be stored by the number property.