- All Superinterfaces:
CharSetAccessor
,CharSetAccessor.CharSetMutator
- Enclosing interface:
- CharSetAccessor
public static interface CharSetAccessor.CharSetProperty
extends CharSetAccessor, CharSetAccessor.CharSetMutator
Provides a char set property.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.mixin.CharSetAccessor
CharSetAccessor.CharSetBuilder<B extends CharSetAccessor.CharSetBuilder<B>>, CharSetAccessor.CharSetMutator, CharSetAccessor.CharSetProperty
-
Method Summary
Modifier and TypeMethodDescriptiondefault char[]
letCharSet
(char[] aCharSet) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given character (setter) as ofCharSetAccessor.CharSetMutator.setCharSet(char[])
and returns the very same value (getter).Methods inherited from interface org.refcodes.mixin.CharSetAccessor
getCharSet
Methods inherited from interface org.refcodes.mixin.CharSetAccessor.CharSetMutator
setCharSet
-
Method Details
-
letCharSet
default char[] letCharSet(char[] aCharSet) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given character (setter) as ofCharSetAccessor.CharSetMutator.setCharSet(char[])
and returns the very same value (getter).- Parameters:
aCharSet
- The character to set (viaCharSetAccessor.CharSetMutator.setCharSet(char[])
).- Returns:
- Returns the value passed for it to be used in conclusive processing steps.
-