Class EquatableValueSet.Builder
- java.lang.Object
-
- com.amazonaws.athena.connector.lambda.domain.predicate.EquatableValueSet.Builder
-
- Enclosing class:
- EquatableValueSet
public static class EquatableValueSet.Builder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EquatableValueSet.Builder
add(Object value)
Adds a value to the builder.EquatableValueSet.Builder
addAll(Collection<Object> value)
Adds the values to the builder.EquatableValueSet
build()
-
-
-
Method Detail
-
add
public EquatableValueSet.Builder add(Object value)
Adds a value to the builder.- Parameters:
value
- The value to add. Be sure that this matches the ArrowType.- Returns:
- The builder itself.
-
addAll
public EquatableValueSet.Builder addAll(Collection<Object> value)
Adds the values to the builder.- Parameters:
value
- Collection of values to add. Be sure that this matches the ArrowType.- Returns:
- The builder itself.
-
build
public EquatableValueSet build()
-
-