Interface ILargeStringValueBuilder
- 
- All Superinterfaces:
 org.apache.commons.lang3.builder.Builder<LargeString>,IValueBuilder<LargeString>
public interface ILargeStringValueBuilder extends IValueBuilder<LargeString>
AIValueBuilderfor creating a large string value.- Since:
 - 7.2.1
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ILargeStringValueBuildervalue(LargeString value)Applies the given value to this builder. 
 - 
 
- 
- 
Method Detail
- 
value
ILargeStringValueBuilder value(@Nonnull LargeString value)
Description copied from interface:IValueBuilderApplies the given value to this builder. Implementations are allowed to perform validity checks on the passed value and reject the given value or parts of it (in case of lists etc.) when they do not conform to the restrictions imposed by this builder.- Specified by:
 valuein interfaceIValueBuilder<LargeString>- Parameters:
 value- Sets the value created by this builder.- Returns:
 - This builder instance for chaining method calls.
 
 
 - 
 
 -