Interface IBooleanValueBuilder
-
- All Superinterfaces:
org.apache.commons.lang3.builder.Builder<Boolean>
,IValueBuilder<Boolean>
public interface IBooleanValueBuilder extends IValueBuilder<Boolean>
AIValueBuilder
for creating a boolean value.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IBooleanValueBuilder
value(boolean value)
default IBooleanValueBuilder
value(Boolean value)
Applies the given value to this builder.
-
-
-
Method Detail
-
value
default IBooleanValueBuilder value(Boolean value)
Description copied from interface:IValueBuilder
Applies 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:
value
in interfaceIValueBuilder<Boolean>
- Parameters:
value
- Sets the value created by this builder.- Returns:
- This builder instance for chaining method calls.
-
value
IBooleanValueBuilder value(boolean value)
- Parameters:
value
- Boolean value to use.- Returns:
- This builder instance for chaining method calls.
-
-