Package com.launchdarkly.sdk
Class ArrayBuilder
java.lang.Object
com.launchdarkly.sdk.ArrayBuilder
public final class ArrayBuilder
extends java.lang.Object
A builder created by
LDValue.buildArray().
Builder methods are not thread-safe.
-
Constructor Summary
Constructors Constructor Description ArrayBuilder() -
Method Summary
Modifier and Type Method Description ArrayBuilderadd(boolean value)Adds a new element to the builder.ArrayBuilderadd(double value)Adds a new element to the builder.ArrayBuilderadd(float value)Adds a new element to the builder.ArrayBuilderadd(int value)Adds a new element to the builder.ArrayBuilderadd(long value)Adds a new element to the builder.ArrayBuilderadd(LDValue value)Adds a new element to the builder.ArrayBuilderadd(java.lang.String value)Adds a new element to the builder.LDValuebuild()Returns an array containing the builder's current elements.
-
Constructor Details
-
ArrayBuilder
public ArrayBuilder()
-
-
Method Details
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
add
Adds a new element to the builder.- Parameters:
value- the new element- Returns:
- the same builder
-
build
Returns an array containing the builder's current elements. Subsequent changes to the builder will not affect this value (it uses copy-on-write logic, so the previous values will only be copied to a new list if you continue to add elements after callingbuild().- Returns:
- an
LDValuethat is an array
-