- 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 the
MinValueAccessor
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
Modifier and TypeMethodDescriptiondefault 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 Details
-
letMinValue
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.
-