Uses of Interface
jakarta.nosql.query.QueryValue
-
-
Uses of QueryValue in jakarta.nosql.query
Subinterfaces of QueryValue in jakarta.nosql.query Modifier and Type Interface Description interface
ArrayQueryValue
A sequence of elements that can be eitherNumberQueryValue
orStringQueryValue
interface
ConditionQueryValue
The QueryValue type that has a list of values, it will be used when the condition is composed such as and (Operator.AND
), or (Operator.OR
) and negation (Operator.NOT
).interface
FunctionQueryValue
AFunction
asQueryValue
interface
JSONQueryValue
JavaScript Object Notation is a lightweight data-interchange format.interface
NumberQueryValue
interface
ParamQueryValue
The parameter is a dynamic value, which means, it does not define the query, it'll replace in the execution time.interface
StringQueryValue
TheString
as valueMethods in jakarta.nosql.query that return QueryValue Modifier and Type Method Description QueryValue<?>
PutQuery. getKey()
The keyQueryValue<?>
Condition. getValue()
that data that receives the operation.QueryValue<?>
PutQuery. getValue()
The valueMethods in jakarta.nosql.query that return types with arguments of type QueryValue Modifier and Type Method Description List<QueryValue<?>>
DelQuery. getKeys()
The keys to being removed from the queryList<QueryValue<?>>
GetQuery. getKeys()
The keys to being retrieved from the query
-