Interface AttributesBuilder
-
public interface AttributesBuilderA builder ofAttributessupporting an arbitrary number of key-value pairs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Attributesbuild()Create theAttributesfrom this.<T> AttributesBuilderput(AttributeKey<Long> key, int value)Puts aAttributeKeywith associated value into this.<T> AttributesBuilderput(AttributeKey<T> key, T value)Puts aAttributeKeywith associated value into this.default AttributesBuilderput(String key, boolean value)Puts a boolean attribute into this.default AttributesBuilderput(String key, boolean... value)Puts a Boolean array attribute into this.default AttributesBuilderput(String key, double value)Puts a double attribute into this.default AttributesBuilderput(String key, double... value)Puts a Double array attribute into this.default AttributesBuilderput(String key, long value)Puts a long attribute into this.default AttributesBuilderput(String key, long... value)Puts a Long array attribute into this.default AttributesBuilderput(String key, String value)Puts a String attribute into this.default AttributesBuilderput(String key, String... value)Puts a String array attribute into this.AttributesBuilderputAll(Attributes attributes)Puts all the provided attributes into this Builder.
-
-
-
Method Detail
-
build
Attributes build()
Create theAttributesfrom this.
-
put
<T> AttributesBuilder put(AttributeKey<Long> key, int value)
Puts aAttributeKeywith associated value into this.The type parameter is unused.
-
put
<T> AttributesBuilder put(AttributeKey<T> key, T value)
Puts aAttributeKeywith associated value into this.
-
put
default AttributesBuilder put(String key, String value)
Puts a String attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, long value)
Puts a long attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, double value)
Puts a double attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, boolean value)
Puts a boolean attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, String... value)
Puts a String array attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, long... value)
Puts a Long array attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, double... value)
Puts a Double array attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
put
default AttributesBuilder put(String key, boolean... value)
Puts a Boolean array attribute into this.Note: It is strongly recommended to use
put(AttributeKey, Object), and pre-allocate your keys, if possible.- Returns:
- this Builder
-
putAll
AttributesBuilder putAll(Attributes attributes)
Puts all the provided attributes into this Builder.- Returns:
- this Builder
-
-