TypeBuilders.BoolProp.Builder
public final class TypeBuilders.BoolProp.Builder
Builder for BoolProp
Summary
Public constructors |
|---|
This method is deprecated. use |
Builder(boolean staticValue)Creates an instance of |
Public methods |
|
|---|---|
@NonNull TypeBuilders.BoolProp |
build()Builds an instance from accumulated values. |
@NonNull TypeBuilders.BoolProp.Builder |
@RequiresSchemaVersion(major = 1, minor = 200)Sets the dynamic value. |
@NonNull TypeBuilders.BoolProp.Builder |
@RequiresSchemaVersion(major = 1, minor = 0)Sets the static value. |
Public constructors
Builder
public Builder(boolean staticValue)
Creates an instance of Builder from the given static value. setDynamicValue can be used to provide a dynamic value.
Public methods
build
public @NonNull TypeBuilders.BoolProp build()
Builds an instance from accumulated values.
| Throws | |
|---|---|
java.lang.IllegalStateException |
if a dynamic value is set using |
setDynamicValue
@RequiresSchemaVersion(major = 1, minor = 200)
public @NonNull TypeBuilders.BoolProp.Builder setDynamicValue(@NonNull DynamicBuilders.DynamicBool dynamicValue)
Sets the dynamic value. Note that when setting this value, the static value is still required to be set to support older renderers that only read the static value. If dynamicValue has an invalid result, the provided static value will be used instead.
setValue
@RequiresSchemaVersion(major = 1, minor = 0)
public @NonNull TypeBuilders.BoolProp.Builder setValue(boolean value)
Sets the static value. If a dynamic value is also set and the renderer supports dynamic values for the corresponding field, this static value will be ignored. If the static value is not specified, false will be used instead.