TypeBuilders.FloatProp.Builder
public final class TypeBuilders.FloatProp.Builder
Builder for FloatProp
Summary
Public constructors |
|---|
This method is deprecated. use |
Builder(float staticValue)Creates an instance of |
Public methods |
|
|---|---|
@NonNull TypeBuilders.FloatProp |
build()Builds an instance from accumulated values. |
@NonNull TypeBuilders.FloatProp.Builder |
@RequiresSchemaVersion(major = 1, minor = 200)Sets the dynamic value. |
@NonNull TypeBuilders.FloatProp.Builder |
@RequiresSchemaVersion(major = 1, minor = 0)Sets the static value. |
Public constructors
Builder
public Builder(float 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.FloatProp 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.FloatProp.Builder setDynamicValue(@NonNull DynamicBuilders.DynamicFloat dynamicValue)
Sets the dynamic value. Note that when setting this value, the static value is still required to be set (with either Builder or setValue) 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.FloatProp.Builder setValue(float 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, zero will be used instead.