A B C D E F G I J L N O P Q S U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- AND - jakarta.nosql.query.Operator
- ARRAY - jakarta.nosql.query.ValueType
- ArrayQueryValue - Interface in jakarta.nosql.query
-
A sequence of elements that can be either
NumberQueryValue
orStringQueryValue
B
C
- Condition - Interface in jakarta.nosql.query
-
Condition performs different computations or actions depending on whether a boolean query condition evaluates to true or false.
- CONDITION - jakarta.nosql.query.ValueType
- ConditionQueryValue - Interface in jakarta.nosql.query
-
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
).
D
- DeleteQuery - Interface in jakarta.nosql.query
-
Deleting either an entity or fields uses the DELETE statement
- DeleteQuery.DeleteQueryProvider - Interface in jakarta.nosql.query
-
A provider to
DeleteQuery
, this provider converts query text inDeleteQuery
- DelQuery - Interface in jakarta.nosql.query
-
To delete one or more entities use the DEL statement.
- DelQuery.DelQueryProvider - Interface in jakarta.nosql.query
-
A provider to
DelQuery
, this provider converts text intoDeleteQuery
E
F
- Function - Interface in jakarta.nosql.query
-
The function is a structured representation of the activities or processes.
- FUNCTION - jakarta.nosql.query.ValueType
- FunctionQueryValue - Interface in jakarta.nosql.query
-
A
Function
asQueryValue
G
- getCondition() - Method in interface jakarta.nosql.query.Where
-
The condition
- getConditions() - Method in interface jakarta.nosql.query.InsertQuery
-
The list of changes as conditions.
- getConditions() - Method in interface jakarta.nosql.query.UpdateQuery
-
The list of changes as conditions.
- getEntity() - Method in interface jakarta.nosql.query.DeleteQuery
-
The entity name
- getEntity() - Method in interface jakarta.nosql.query.InsertQuery
-
The entity name
- getEntity() - Method in interface jakarta.nosql.query.SelectQuery
-
The entity name
- getEntity() - Method in interface jakarta.nosql.query.UpdateQuery
-
The entity name
- getFields() - Method in interface jakarta.nosql.query.DeleteQuery
-
The fields that will delete in this query, if this fields is empty, this query will remove the whole entity.
- getFields() - Method in interface jakarta.nosql.query.SelectQuery
-
The fields that will retrieve in this query, if this fields is empty, this query will retrieve the whole entity.
- getKey() - Method in interface jakarta.nosql.query.PutQuery
-
The key
- getKeys() - Method in interface jakarta.nosql.query.DelQuery
-
The keys to being removed from the query
- getKeys() - Method in interface jakarta.nosql.query.GetQuery
-
The keys to being retrieved from the query
- getLimit() - Method in interface jakarta.nosql.query.SelectQuery
-
Statement limits the number of rows returned by a query,
- getName() - Method in interface jakarta.nosql.query.Condition
-
the data source or target, to apply the operator
- getName() - Method in interface jakarta.nosql.query.Function
-
The function name
- getOperator() - Method in interface jakarta.nosql.query.Condition
-
that defines comparing process between the name and the value.
- getOrderBy() - Method in interface jakarta.nosql.query.SelectQuery
-
The list of orders, it is used to sort the result-set in ascending or descending order.
- getParams() - Method in interface jakarta.nosql.query.Function
-
The params of this function
- getProvider() - Static method in interface jakarta.nosql.query.DeleteQuery
-
Returns the
DeleteQuery.DeleteQueryProvider
instance - getProvider() - Static method in interface jakarta.nosql.query.DelQuery
-
Returns the
DelQuery.DelQueryProvider
instance - getProvider() - Static method in interface jakarta.nosql.query.GetQuery
-
Returns the
GetQuery.GetQueryProvider
instance - getProvider() - Static method in interface jakarta.nosql.query.InsertQuery
-
Returns the
InsertQuery.InsertQueryProvider
instance - getProvider() - Static method in interface jakarta.nosql.query.PutQuery
-
Returns the
PutQuery.PutQueryProvider
instance - getProvider() - Static method in interface jakarta.nosql.query.SelectQuery
-
Returns the
SelectQuery.SelectQueryProvider
instance - getProvider() - Static method in interface jakarta.nosql.query.UpdateQuery
-
Returns the
UpdateQuery.UpdateQueryProvider
instance - GetQuery - Interface in jakarta.nosql.query
-
To retrieve one or more entities use the GET statement.
- GetQuery.GetQueryProvider - Interface in jakarta.nosql.query
- getSkip() - Method in interface jakarta.nosql.query.SelectQuery
-
Statement defines where the query should start
- getTtl() - Method in interface jakarta.nosql.query.InsertQuery
-
This duration set a time for data in an entity to expire.
- getTtl() - Method in interface jakarta.nosql.query.PutQuery
-
This duration set a time for data in an entity to expire.
- getType() - Method in interface jakarta.nosql.query.ArrayQueryValue
- getType() - Method in interface jakarta.nosql.query.ConditionQueryValue
- getType() - Method in interface jakarta.nosql.query.FunctionQueryValue
- getType() - Method in interface jakarta.nosql.query.JSONQueryValue
- getType() - Method in interface jakarta.nosql.query.NumberQueryValue
- getType() - Method in interface jakarta.nosql.query.ParamQueryValue
- getType() - Method in interface jakarta.nosql.query.QueryValue
-
Returns a value type
- getType() - Method in interface jakarta.nosql.query.StringQueryValue
- getValue() - Method in interface jakarta.nosql.query.Condition
-
that data that receives the operation.
- getValue() - Method in interface jakarta.nosql.query.InsertQuery
-
Returns the value to insert when the query uses JSON value instead of Conditions.
- getValue() - Method in interface jakarta.nosql.query.PutQuery
-
The value
- getValue() - Method in interface jakarta.nosql.query.UpdateQuery
-
Returns the value to update when the query uses JSON value instead of Conditions.
- getWhere() - Method in interface jakarta.nosql.query.DeleteQuery
-
The condition at this
DeleteQuery
, if the Where is empty that means will delete the whole entities. - getWhere() - Method in interface jakarta.nosql.query.SelectQuery
-
The condition at this
SelectQuery
, if the Where is empty that means may retrieve the whole entities. - GREATER_EQUALS_THAN - jakarta.nosql.query.Operator
- GREATER_THAN - jakarta.nosql.query.Operator
I
- IN - jakarta.nosql.query.Operator
- InsertQuery - Interface in jakarta.nosql.query
-
Inserting data for an entity is done using an INSERT statement.
- InsertQuery.InsertQueryProvider - Interface in jakarta.nosql.query
-
A provider to
InsertQuery
, this provider converts text intoInsertQuery
J
- jakarta.nosql.communication.query - module jakarta.nosql.communication.query
- jakarta.nosql.query - package jakarta.nosql.query
-
Defines the API to representation of the query
String
in Classes. - JSON - jakarta.nosql.query.ValueType
- JSONQueryValue - Interface in jakarta.nosql.query
-
JavaScript Object Notation is a lightweight data-interchange format.
L
- LESSER_EQUALS_THAN - jakarta.nosql.query.Operator
- LESSER_THAN - jakarta.nosql.query.Operator
- LIKE - jakarta.nosql.query.Operator
N
- NOT - jakarta.nosql.query.Operator
- NUMBER - jakarta.nosql.query.ValueType
- NumberQueryValue - Interface in jakarta.nosql.query
O
- Operator - Enum in jakarta.nosql.query
-
The unit that defines comparing process between the name and the value.
- OR - jakarta.nosql.query.Operator
P
- PARAMETER - jakarta.nosql.query.ValueType
- ParamQueryValue - Interface in jakarta.nosql.query
-
The parameter is a dynamic value, which means, it does not define the query, it'll replace in the execution time.
- parse(String) - Static method in interface jakarta.nosql.query.DeleteQuery
-
Obtains an instance of
DeleteQuery
from a text string. - parse(String) - Static method in interface jakarta.nosql.query.DelQuery
-
Obtains an instance of
DelQuery
from a text string. - parse(String) - Static method in interface jakarta.nosql.query.GetQuery
-
Obtains an instance of
GetQuery
from a text string. - parse(String) - Static method in interface jakarta.nosql.query.InsertQuery
-
Obtains an instance of
InsertQuery.InsertQueryProvider
from a text string. - parse(String) - Static method in interface jakarta.nosql.query.PutQuery
-
Obtains an instance of
GetQuery
from a text string. - parse(String) - Static method in interface jakarta.nosql.query.SelectQuery
-
Obtains an instance of
SelectQuery
from a text string. - parse(String) - Static method in interface jakarta.nosql.query.UpdateQuery
-
Obtains an instance of
UpdateQuery
from a text string. - PutQuery - Interface in jakarta.nosql.query
-
To either insert or overrides values from a key-value database use the PUT statement.
- PutQuery.PutQueryProvider - Interface in jakarta.nosql.query
Q
- Query - Interface in jakarta.nosql.query
-
Query languages or data query languages (DQLs) are computer languages used to make queries in databases and information systems.
- QuerySyntaxException - Exception in jakarta.nosql.query
-
Exception thrown when there is a syntax error in the HQL.
- QuerySyntaxException() - Constructor for exception jakarta.nosql.query.QuerySyntaxException
-
Constructs a new runtime exception with null as its detail message.
- QuerySyntaxException(String) - Constructor for exception jakarta.nosql.query.QuerySyntaxException
-
Constructs a new runtime exception with the specified detail message.
- QuerySyntaxException(String, Throwable) - Constructor for exception jakarta.nosql.query.QuerySyntaxException
-
Constructs a new runtime exception with the specified detail message and cause.
- QuerySyntaxException(String, Throwable, boolean, boolean) - Constructor for exception jakarta.nosql.query.QuerySyntaxException
-
Constructs a new runtime exception with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.
- QuerySyntaxException(Throwable) - Constructor for exception jakarta.nosql.query.QuerySyntaxException
-
Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
- QueryValue<T> - Interface in jakarta.nosql.query
-
The value is the last element in a condition, and it defines what it 'll go to be used, with an operator, in a field target.
S
- SelectQuery - Interface in jakarta.nosql.query
-
The select statement reads one or more fields for one or more entities.
- SelectQuery.SelectQueryProvider - Interface in jakarta.nosql.query
-
A provider to
SelectQuery
, this provider converts text intoSelectQuery
- STRING - jakarta.nosql.query.ValueType
- StringQueryValue - Interface in jakarta.nosql.query
-
The
String
as value
U
- UpdateQuery - Interface in jakarta.nosql.query
-
Updating an entity is done using an UPDATE statement.
- UpdateQuery.UpdateQueryProvider - Interface in jakarta.nosql.query
-
A provider to
UpdateQuery
, this provider converts text intoUpdateQuery
V
- valueOf(String) - Static method in enum jakarta.nosql.query.Operator
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum jakarta.nosql.query.ValueType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum jakarta.nosql.query.Operator
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum jakarta.nosql.query.ValueType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- ValueType - Enum in jakarta.nosql.query
-
The value type
W
- Where - Interface in jakarta.nosql.query
-
The WHERE clause specifies a filter to the result.
All Classes All Packages