Class BooleanElementConfigurationBuilder
- java.lang.Object
-
- org.infinispan.server.hotrod.configuration.BooleanElementConfigurationBuilder
-
- All Implemented Interfaces:
Builder<BooleanElementConfiguration>
public class BooleanElementConfigurationBuilder extends Object implements Builder<BooleanElementConfiguration>
- Since:
- 10.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanElementConfiguration
create()
Create the configuration beanBooleanElementConfigurationBuilder
read(BooleanElementConfiguration template)
Reads the configuration from an already created configuration bean into this builder.void
validate()
Validate the data in this builder before building the configuration beanBoolean
value()
BooleanElementConfigurationBuilder
value(boolean value)
-
-
-
Method Detail
-
value
public BooleanElementConfigurationBuilder value(boolean value)
-
value
public Boolean value()
-
validate
public void validate()
Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<BooleanElementConfiguration>
-
create
public BooleanElementConfiguration create()
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<BooleanElementConfiguration>
- Returns:
-
read
public BooleanElementConfigurationBuilder read(BooleanElementConfiguration template)
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<BooleanElementConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.
-
-