-
- Type Parameters:
V
- The type of the minimum value property.
- All Superinterfaces:
MinValueAccessor<V>
,MinValueAccessor.MinValueMutator<V>
- Enclosing interface:
- MinValueAccessor<V>
public static interface MinValueAccessor.MinValueProperty<V> extends MinValueAccessor<V>, MinValueAccessor.MinValueMutator<V>
Extends theMinValueAccessor
with a setter method.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.mixin.MinValueAccessor
MinValueAccessor.MinValueBuilder<V,B extends MinValueAccessor.MinValueBuilder<V,B>>, MinValueAccessor.MinValueMutator<V>, MinValueAccessor.MinValueProperty<V>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default V
letMinValue(V aMinValue)
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given value (setter) as ofMinValueAccessor.MinValueMutator.setMinValue(Object)
and returns the very same value (getter).-
Methods inherited from interface org.refcodes.mixin.MinValueAccessor
getMinValue
-
Methods inherited from interface org.refcodes.mixin.MinValueAccessor.MinValueMutator
setMinValue
-
-
-
-
Method Detail
-
letMinValue
default V letMinValue(V aMinValue)
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given value (setter) as ofMinValueAccessor.MinValueMutator.setMinValue(Object)
and returns the very same value (getter).- Parameters:
aMinValue
- The value to set (viaMinValueAccessor.MinValueMutator.setMinValue(Object)
).- Returns:
- Returns the value passed for it to be used in conclusive processing steps.
-
-