| Modifier and Type | Method and Description |
|---|---|
Value.ValueClause<T> |
Value.ValueClause.and(Supplier<Boolean> clause)
Logically AND combine the current
Value.ValueClause with clause. |
default Value.ValueClause<T> |
Value.ValueClause.andNot(Supplier<Boolean> clause)
Deprecated.
use
and(Supplier).not() |
Value.ValueClause<T> |
Value.ValueClause.not()
Negate the Value.
|
Value.ValueClause<T> |
Value.ValueClause.or(Supplier<Boolean> clause)
Logically OR combine the current
Value.ValueClause with clause. |
default Value.ValueClause<T> |
Value.ValueClause.orNot(Supplier<Boolean> clause)
Logically OR combine the current
Value.ValueClause with boolean opposite of the clause. |
static <T> Value.ValueClause<T> |
Value.where(boolean clause)
Create a new
Value.ValueClause for the clause. |
static <T> Value.ValueClause<T> |
Value.where(Condition clause)
Create a new
Value.ValueClause for the clause. |
Copyright © 2015–2019. All rights reserved.