Interface LocationBaseDataHolder
-
- All Known Subinterfaces:
Chunk<P>
,ClientWorld
,EnvironmentalVolume
,GenerationChunk
,GenerationRegion
,InteractableVolume
,LocationBaseDataHolder.Mutable
,PrimitiveGameVolume
,Region<R>
,Schematic
,ServerWorld
,TrackedVolume
,World<W,L>
,WorldChunk
,WorldLike<P>
public interface LocationBaseDataHolder
A type ofServerLocation
based value store that can handle proxied data api related queries for specific positions.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
LocationBaseDataHolder.Mutable
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <E> java.util.Optional<E>
get(int x, int y, int z, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> java.util.Optional<E>
get(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> java.util.Optional<E>
get(Vector3i position, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> java.util.Optional<E>
get(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalDouble
getDouble(int x, int y, int z, Key<? extends Value<java.lang.Double>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalDouble
getDouble(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Double>>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalDouble
getDouble(Vector3i position, Key<? extends Value<java.lang.Double>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalDouble
getDouble(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Double>>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalInt
getInt(int x, int y, int z, Key<? extends Value<java.lang.Integer>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalInt
getInt(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Integer>>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalInt
getInt(Vector3i position, Key<? extends Value<java.lang.Integer>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalInt
getInt(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Integer>>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalLong
getLong(int x, int y, int z, Key<? extends Value<java.lang.Long>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalLong
getLong(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Long>>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalLong
getLong(Vector3i position, Key<? extends Value<java.lang.Long>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.default java.util.OptionalLong
getLong(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Long>>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.<E,V extends Value<E>>
java.util.Optional<V>getValue(int x, int y, int z, Key<V> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E,V extends Value<E>>
java.util.Optional<V>getValue(int x, int y, int z, DefaultedRegistryReference<? extends Key<V>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E,V extends Value<E>>
java.util.Optional<V>getValue(Vector3i position, java.util.function.Supplier<? extends Key<V>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E,V extends Value<E>>
java.util.Optional<V>getValue(Vector3i position, Key<V> key)
Gets the value of data that is keyed to the providedKey
at the give block location.java.util.Set<Value.Immutable<?>>
getValues(int x, int y, int z)
Gets anImmutableSet
ofValue.Immutable
s for the block at the given location.default java.util.Set<Value.Immutable<?>>
getValues(Vector3i position)
Gets anImmutableSet
ofValue.Immutable
s for the block at the given location.java.util.Set<Key<?>>
keys(int x, int y, int z)
Gets anImmutableSet
ofKey
s for the block at the given location.default java.util.Set<Key<?>>
keys(Vector3i position)
Gets anImmutableSet
ofKey
s for the block at the given location.default <E> E
orElse(int x, int y, int z, Key<? extends Value<E>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(int x, int y, int z, Key<? extends Value<E>> key, java.util.function.Supplier<E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, java.util.function.Supplier<? extends E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(Vector3i position, Key<? extends Value<E>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(Vector3i position, Key<? extends Value<E>> key, java.util.function.Supplier<? extends E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
orElse(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, java.util.function.Supplier<? extends E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> @Nullable E
orNull(int x, int y, int z, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> @Nullable E
orNull(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> @Nullable E
orNull(Vector3i position, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> @Nullable E
orNull(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.default <E> E
require(int x, int y, int z, Key<? extends Value<E>> key)
default <E> E
require(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
default <E> E
require(Vector3i position, Key<? extends Value<E>> key)
default <E> E
require(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
default boolean
supports(int x, int y, int z, java.util.function.Supplier<? extends Key<?>> key)
Checks if the providedKey
to the data is supported by the block at the provided location.boolean
supports(int x, int y, int z, Key<?> key)
Checks if the providedKey
to the data is supported by the block at the provided location.default boolean
supports(int x, int y, int z, Value<?> value)
Checks if the providedValue
is supported by the block at the provided location.default boolean
supports(Vector3i position, java.util.function.Supplier<? extends Key<?>> key)
Checks if the providedKey
to the data is supported by the block at the provided location.default boolean
supports(Vector3i position, Key<?> key)
Checks if the providedKey
to the data is supported by the block at the provided location.default boolean
supports(Vector3i position, Value<?> value)
Checks if the providedValue
is supported by the block at the provided location.
-
-
-
Method Detail
-
get
default <E> java.util.Optional<E> get(Vector3i position, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
get
default <E> java.util.Optional<E> get(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
get
<E> java.util.Optional<E> get(int x, int y, int z, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
get
default <E> java.util.Optional<E> get(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
getInt
default java.util.OptionalInt getInt(Vector3i position, Key<? extends Value<java.lang.Integer>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
getInt
default java.util.OptionalInt getInt(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Integer>>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
getInt
default java.util.OptionalInt getInt(int x, int y, int z, Key<? extends Value<java.lang.Integer>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
getInt
default java.util.OptionalInt getInt(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Integer>>> key)
Gets the int value of data that is keyed to the providedKey
at the give block location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
getDouble
default java.util.OptionalDouble getDouble(Vector3i position, Key<? extends Value<java.lang.Double>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
getDouble
default java.util.OptionalDouble getDouble(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Double>>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
getDouble
default java.util.OptionalDouble getDouble(int x, int y, int z, Key<? extends Value<java.lang.Double>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
getDouble
default java.util.OptionalDouble getDouble(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Double>>> key)
Gets the double value of data that is keyed to the providedKey
at the give block location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
getLong
default java.util.OptionalLong getLong(Vector3i position, Key<? extends Value<java.lang.Long>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
getLong
default java.util.OptionalLong getLong(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Long>>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data, if available
-
getLong
default java.util.OptionalLong getLong(int x, int y, int z, Key<? extends Value<java.lang.Long>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
getLong
default java.util.OptionalLong getLong(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<java.lang.Long>>> key)
Gets the long value of data that is keyed to the providedKey
at the give block location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data, if available
-
require
default <E> E require(Vector3i position, Key<? extends Value<E>> key)
Attempts to get the underlying value backed by aValue
linked to the providedKey
.If the
Key
is not supported or available,NoSuchElementException
will be thrown.- Type Parameters:
E
- The type of value- Parameters:
position
- The position of the blockkey
- The key- Returns:
- The value
- Throws:
java.util.NoSuchElementException
- If the value is not supported or present
-
require
default <E> E require(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Attempts to get the underlying value backed by aValue
linked to the providedKey
.If the
Key
is not supported or available,NoSuchElementException
will be thrown.- Type Parameters:
E
- The type of value- Parameters:
position
- The position of the blockkey
- The key- Returns:
- The value
- Throws:
java.util.NoSuchElementException
- If the value is not supported or present
-
require
default <E> E require(int x, int y, int z, Key<? extends Value<E>> key)
Attempts to get the underlying value backed by aValue
linked to the providedKey
.If the
Key
is not supported or available,NoSuchElementException
will be thrown.- Type Parameters:
E
- The type of value- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key- Returns:
- The value
- Throws:
java.util.NoSuchElementException
- If the value is not supported or present
-
require
default <E> E require(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Attempts to get the underlying value backed by aValue
linked to the providedKey
.If the
Key
is not supported or available,NoSuchElementException
will be thrown.- Type Parameters:
E
- The type of value- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key- Returns:
- The value
- Throws:
java.util.NoSuchElementException
- If the value is not supported or present
-
orNull
default <E> @Nullable E orNull(Vector3i position, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which casenull
may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data or null
-
orNull
default <E> @Nullable E orNull(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which casenull
may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The data or null
-
orNull
default <E> @Nullable E orNull(int x, int y, int z, Key<? extends Value<E>> key)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which casenull
may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data or null
-
orNull
default <E> @Nullable E orNull(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which casenull
may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The data or null
-
orElse
default <E> E orElse(Vector3i position, Key<? extends Value<E>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the datadefaultValue
- The default value to be provided- Returns:
- The data or null
-
orElse
default <E> E orElse(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the datadefaultValue
- The default value to be provided- Returns:
- The data or null
-
orElse
default <E> E orElse(int x, int y, int z, Key<? extends Value<E>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the datadefaultValue
- The default value to return- Returns:
- The data or null
-
orElse
default <E> E orElse(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, E defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the datadefaultValue
- The supplier of the default value to return- Returns:
- The data or null
-
orElse
default <E> E orElse(Vector3i position, Key<? extends Value<E>> key, java.util.function.Supplier<? extends E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the datadefaultValue
- The supplier of the default value to be provided- Returns:
- The data or null
-
orElse
default <E> E orElse(Vector3i position, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, java.util.function.Supplier<? extends E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
position
- The position of the blockkey
- The key to the datadefaultValue
- The supplier of the default value to be provided- Returns:
- The data or null
-
orElse
default <E> E orElse(int x, int y, int z, Key<? extends Value<E>> key, java.util.function.Supplier<E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the datadefaultValue
- The supplier of the default value to return- Returns:
- The data or null
-
orElse
default <E> E orElse(int x, int y, int z, DefaultedRegistryReference<? extends Key<? extends Value<E>>> key, java.util.function.Supplier<? extends E> defaultValue)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which case the default value may be returned.- Type Parameters:
E
- The type of element of data- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the datadefaultValue
- The supplier of the default value to return- Returns:
- The data or null
-
getValue
default <E,V extends Value<E>> java.util.Optional<V> getValue(Vector3i position, Key<V> key)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which casenull
may be returned.- Type Parameters:
E
- The type of element of dataV
- The type of value- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The base value, if available
-
getValue
default <E,V extends Value<E>> java.util.Optional<V> getValue(Vector3i position, java.util.function.Supplier<? extends Key<V>> key)
Gets the value of data that is keyed to the providedKey
at the give block location. The data may not exist, or may not be compatible in which casenull
may be returned.- Type Parameters:
E
- The type of element of dataV
- The type of value- Parameters:
position
- The position of the blockkey
- The key to the data- Returns:
- The base value, if available
-
getValue
<E,V extends Value<E>> java.util.Optional<V> getValue(int x, int y, int z, Key<V> key)
Gets the value of data that is keyed to the providedKey
at the give block location.- Type Parameters:
E
- The type of element of dataV
- The type of value- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The base value, if available
-
getValue
default <E,V extends Value<E>> java.util.Optional<V> getValue(int x, int y, int z, DefaultedRegistryReference<? extends Key<V>> key)
Gets the value of data that is keyed to the providedKey
at the give block location.- Type Parameters:
E
- The type of element of dataV
- The type of value- Parameters:
x
- The X positiony
- The Y positionz
- The Z positionkey
- The key to the data- Returns:
- The base value, if available
-
supports
default boolean supports(Vector3i position, Key<?> key)
Checks if the providedKey
to the data is supported by the block at the provided location.- Parameters:
position
- The position of the blockkey
- The Key to the value of data- Returns:
- True if the block supports the data
-
supports
default boolean supports(Vector3i position, java.util.function.Supplier<? extends Key<?>> key)
Checks if the providedKey
to the data is supported by the block at the provided location.- Parameters:
position
- The position of the blockkey
- The Key to the value of data- Returns:
- True if the block supports the data
-
supports
boolean supports(int x, int y, int z, Key<?> key)
Checks if the providedKey
to the data is supported by the block at the provided location.- Parameters:
x
- The X coordinatey
- The Y coordinatez
- The Z coordinatekey
- The Key to the value of data- Returns:
- True if the block supports the data
-
supports
default boolean supports(int x, int y, int z, java.util.function.Supplier<? extends Key<?>> key)
Checks if the providedKey
to the data is supported by the block at the provided location.- Parameters:
x
- The X coordinatey
- The Y coordinatez
- The Z coordinatekey
- The Key to the value of data- Returns:
- True if the block supports the data
-
supports
default boolean supports(Vector3i position, Value<?> value)
Checks if the providedValue
is supported by the block at the provided location.- Parameters:
position
- The position of the blockvalue
- The value of data- Returns:
- True if the block supports the data
-
supports
default boolean supports(int x, int y, int z, Value<?> value)
Checks if the providedValue
is supported by the block at the provided location.- Parameters:
x
- The X coordinatey
- The Y coordinatez
- The Z coordinatevalue
- The value of data- Returns:
- True if the block supports the data
-
keys
default java.util.Set<Key<?>> keys(Vector3i position)
Gets anImmutableSet
ofKey
s for the block at the given location.- Parameters:
position
- The position of the block- Returns:
- The immutable set of values for the block
-
keys
java.util.Set<Key<?>> keys(int x, int y, int z)
Gets anImmutableSet
ofKey
s for the block at the given location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z position- Returns:
- The immutable set of values for the block
-
getValues
default java.util.Set<Value.Immutable<?>> getValues(Vector3i position)
Gets anImmutableSet
ofValue.Immutable
s for the block at the given location.- Parameters:
position
- The position of the block- Returns:
- The immutable set of values for the block
-
getValues
java.util.Set<Value.Immutable<?>> getValues(int x, int y, int z)
Gets anImmutableSet
ofValue.Immutable
s for the block at the given location.- Parameters:
x
- The X positiony
- The Y positionz
- The Z position- Returns:
- The immutable set of values for the block
-
-