ColorBuilders.ColorProp.Builder


public final class ColorBuilders.ColorProp.Builder


Builder for ColorProp

Summary

Public constructors

This method is deprecated.

use Builder

Builder(@ColorInt int staticValue)

Creates an instance of Builder from the given static value.

Public methods

@NonNull ColorBuilders.ColorProp

Builds an instance from accumulated values.

@NonNull ColorBuilders.ColorProp.Builder
@RequiresSchemaVersion(major = 1, minor = 0)
setArgb(@ColorInt int argb)

Sets the static color value, in ARGB format.

@NonNull ColorBuilders.ColorProp.Builder
@RequiresSchemaVersion(major = 1, minor = 200)
setDynamicValue(@NonNull DynamicBuilders.DynamicColor dynamicValue)

Sets the dynamic value.

Public constructors

Builder

Added in 1.0.0
Deprecated in 1.0.0
public Builder()

Creates an instance of Builder.

Builder

Added in 1.0.0
public Builder(@ColorInt int staticValue)

Creates an instance of Builder from the given static value. setDynamicValue can be used to provide a dynamic value.

Public methods

build

Added in 1.0.0
public @NonNull ColorBuilders.ColorProp build()

Builds an instance from accumulated values.

Throws
java.lang.IllegalStateException

if a dynamic value is set using setDynamicValue but neither Builder nor setArgb is used to provide a static value.

setArgb

Added in 1.0.0
@RequiresSchemaVersion(major = 1, minor = 0)
public @NonNull ColorBuilders.ColorProp.Builder setArgb(@ColorInt int argb)

Sets the static color value, in ARGB format. 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 (equivalent to TRANSPARENT) will be used instead.

setDynamicValue

Added in 1.0.0
@RequiresSchemaVersion(major = 1, minor = 200)
public @NonNull ColorBuilders.ColorProp.Builder setDynamicValue(@NonNull DynamicBuilders.DynamicColor 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.