Package org.refcodes.structure
Interface StringArrayAccessor.StringArrayBuilder<B extends StringArrayAccessor.StringArrayBuilder<B>>
-
- Type Parameters:
B
- The builder to return in order to be able to apply multiple build operations.
- Enclosing interface:
- StringArrayAccessor
public static interface StringArrayAccessor.StringArrayBuilder<B extends StringArrayAccessor.StringArrayBuilder<B>>
Provides a builder method for a String array property returning the builder for applying multiple build operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description B
withStrings(java.lang.String[] aStrings)
Sets the String array for the String array property.
-
-
-
Method Detail
-
withStrings
B withStrings(java.lang.String[] aStrings)
Sets the String array for the String array property.- Parameters:
aStrings
- The String array to be stored by the String array property.- Returns:
- The builder for applying multiple build operations.
-
-