Module org.refcodes.struct
Package org.refcodes.struct
Interface FloatArrayAccessor.FloatArrayProperty
- All Superinterfaces:
FloatArrayAccessor,FloatArrayAccessor.FloatArrayMutator
- Enclosing interface:
- FloatArrayAccessor
public static interface FloatArrayAccessor.FloatArrayProperty
extends FloatArrayAccessor, FloatArrayAccessor.FloatArrayMutator
Provides a float array property.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.struct.FloatArrayAccessor
FloatArrayAccessor.FloatArrayBuilder<B extends FloatArrayAccessor.FloatArrayBuilder<B>>, FloatArrayAccessor.FloatArrayMutator, FloatArrayAccessor.FloatArrayProperty -
Method Summary
Modifier and TypeMethodDescriptiondefault float[]letFloats(float[] aFloats) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given float array (setter) as ofFloatArrayAccessor.FloatArrayMutator.setFloats(float[])and returns the very same value (getter).Methods inherited from interface org.refcodes.struct.FloatArrayAccessor
getFloatsMethods inherited from interface org.refcodes.struct.FloatArrayAccessor.FloatArrayMutator
setFloats
-
Method Details
-
letFloats
default float[] letFloats(float[] aFloats) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given float array (setter) as ofFloatArrayAccessor.FloatArrayMutator.setFloats(float[])and returns the very same value (getter).- Parameters:
aFloats- The float array to set (viaFloatArrayAccessor.FloatArrayMutator.setFloats(float[])).- Returns:
- Returns the value passed for it to be used in conclusive processing steps.
-