| Modifier and Type | Class and Description |
|---|---|
class |
BoundValue
A modifiable primitive value.
|
| Modifier and Type | Method and Description |
|---|---|
static Value |
Value.fromJson(com.fasterxml.jackson.databind.JsonNode node)
Creates a value from a json node
If the node is decimal, double, or float, create s a BigDecimal value.
|
Value |
BoundValueList.get(int index) |
Value |
ValueComparisonExpression.getRvalue()
Returns the right-value
|
Value |
RValueExpression.getValue()
The constant value.
|
Value |
BoundValueList.remove(int index) |
Value |
BoundValueList.set(int index,
Value e) |
| Modifier and Type | Method and Description |
|---|---|
List<Value> |
ArrayContainsExpression.getValues()
The values
|
List<Value> |
NaryValueRelationalExpression.getValues()
List of values against which to compare the field
|
Iterator<Value> |
BoundValueList.iterator() |
ListIterator<Value> |
BoundValueList.listIterator() |
ListIterator<Value> |
BoundValueList.listIterator(int index) |
List<Value> |
BoundValueList.subList(int fromIndex,
int toIndex) |
| Modifier and Type | Method and Description |
|---|---|
void |
BoundValueList.add(int index,
Value element) |
boolean |
BoundValueList.add(Value v) |
Value |
BoundValueList.set(int index,
Value e) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
BoundValueList.addAll(Collection<? extends Value> x) |
boolean |
BoundValueList.addAll(int i,
Collection<? extends Value> x) |
void |
BoundValueList.setList(List<Value> l)
Sets the list
|
| Constructor and Description |
|---|
NaryValueRelationalExpression(Path field,
NaryRelationalOperator op,
Value... values)
Ctor with the given values
|
RValueExpression(Value value)
Creates an rvalue expression that is a constant value
|
ValueComparisonExpression(Path field,
BinaryComparisonOperator op,
Value rvalue)
Initializes all fields
|
| Constructor and Description |
|---|
ArrayContainsExpression(Path array,
ContainsOperator op,
List<Value> values)
Ctor with the given values
|
BoundValueList(List<Value> l)
Creates a BoundValueList with list=l
|
NaryValueRelationalExpression(Path field,
NaryRelationalOperator op,
List<Value> values)
Ctor with the given values
|
Copyright © 2015. All rights reserved.