Skip navigation links
A C D F G I J N O P Q R S U V W 

A

ArrayValue - Interface in org.jnosql.query
A sequence of elements that can be either NumberValue or StringValue

C

Condition - Interface in org.jnosql.query
Condition performs different computations or actions depending on whether a boolean query condition evaluates to true or false.
ConditionValue - Interface in org.jnosql.query
The Value 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 org.jnosql.query
Deleting either an entity or fields uses the DELETE statement
DeleteQuerySupplier - Interface in org.jnosql.query
A supplier to DeleteQuery

F

Function - Interface in org.jnosql.query
The function is a structured representation of the activities or processes.
FunctionValue - Interface in org.jnosql.query

G

getCondition() - Method in interface org.jnosql.query.Where
The condition
getConditions() - Method in interface org.jnosql.query.InsertQuery
The list of changes as conditions.
getConditions() - Method in interface org.jnosql.query.UpdateQuery
The list of changes as conditions.
getEntity() - Method in interface org.jnosql.query.DeleteQuery
The entity name
getEntity() - Method in interface org.jnosql.query.InsertQuery
The entity name
getEntity() - Method in interface org.jnosql.query.SelectQuery
The entity name
getEntity() - Method in interface org.jnosql.query.UpdateQuery
The entity name
getFields() - Method in interface org.jnosql.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 org.jnosql.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 org.jnosql.query.PutQuery
The key
getKeys() - Method in interface org.jnosql.query.GetQuery
The keys to being retrieved from the query
getKeys() - Method in interface org.jnosql.query.RemoveQuery
The keys to being removed from the query
getLimit() - Method in interface org.jnosql.query.SelectQuery
Statement limits the number of rows returned by a query,
getName() - Method in interface org.jnosql.query.Condition
the data source or target, to apply the operator
getName() - Method in interface org.jnosql.query.Function
The function name
getName() - Method in interface org.jnosql.query.Sort
The name
getOperator() - Method in interface org.jnosql.query.Condition
that defines comparing process between the name and the value.
getOrderBy() - Method in interface org.jnosql.query.SelectQuery
The list of orders, it is used to sort the result-set in ascending or descending order.
getParams() - Method in interface org.jnosql.query.Function
The params of this function
GetQuery - Interface in org.jnosql.query
To retrieve one or more entities use the GET statement.
GetQuerySupplier - Interface in org.jnosql.query
A supplier to GetQuery
getSkip() - Method in interface org.jnosql.query.SelectQuery
Statement defines where the query should start
getSupplier() - Static method in interface org.jnosql.query.DeleteQuerySupplier
getSupplier() - Static method in interface org.jnosql.query.GetQuerySupplier
It returns a GetQuery from ServiceLoader
getSupplier() - Static method in interface org.jnosql.query.InsertQuerySupplier
It returns a InsertQuery from ServiceLoader
getSupplier() - Static method in interface org.jnosql.query.PutQuerySupplier
It returns a PutQuery from ServiceLoader
getSupplier() - Static method in interface org.jnosql.query.RemoveQuerySupplier
getSupplier() - Static method in interface org.jnosql.query.SelectQuerySupplier
It returns a SelectQuery from ServiceLoader
getSupplier() - Static method in interface org.jnosql.query.UpdateQuerySupplier
It returns a UpdateQuery from ServiceLoader
getTtl() - Method in interface org.jnosql.query.InsertQuery
This duration set a time for data in an entity to expire.
getTtl() - Method in interface org.jnosql.query.PutQuery
This duration set a time for data in an entity to expire.
getType() - Method in interface org.jnosql.query.ArrayValue
 
getType() - Method in interface org.jnosql.query.ConditionValue
 
getType() - Method in interface org.jnosql.query.FunctionValue
 
getType() - Method in interface org.jnosql.query.JSONValue
 
getType() - Method in interface org.jnosql.query.NumberValue
 
getType() - Method in interface org.jnosql.query.ParamValue
 
getType() - Method in interface org.jnosql.query.Sort
It defines if it is either ascending or descending order.
getType() - Method in interface org.jnosql.query.StringValue
 
getType() - Method in interface org.jnosql.query.Value
Returns a value type
getValue() - Method in interface org.jnosql.query.Condition
that data that receives the operation.
getValue() - Method in interface org.jnosql.query.PutQuery
The value
getWhere() - Method in interface org.jnosql.query.DeleteQuery
The condition at this DeleteQuery, if the Where is empty that means will delete the whole entities.
getWhere() - Method in interface org.jnosql.query.SelectQuery
The condition at this SelectQuery, if the Where is empty that means may retrieve the whole entities.

I

InsertQuery - Interface in org.jnosql.query
Inserting data for an entity is done using an INSERT statement.
InsertQuerySupplier - Interface in org.jnosql.query
A supplier to InsertQuery

J

JSONValue - Interface in org.jnosql.query
JavaScript Object Notation is a lightweight data-interchange format.

N

NumberValue - Interface in org.jnosql.query
A number is a mathematical object used to count, measure and also label where if it is a decimal, will become Double, otherwise, Long

O

Operator - Enum in org.jnosql.query
The unit that defines comparing process between the name and the value.
org.jnosql.query - package org.jnosql.query
This package domain has the representation of the query String in Classes.

P

ParamValue - Interface in org.jnosql.query
The parameter is a dynamic value, which means, it does not define the query, it'll replace in the execution time.
PutQuery - Interface in org.jnosql.query
To either insert or overrides values from a key-value database use the PUT statement.
PutQuerySupplier - Interface in org.jnosql.query
A supplier to PutQuery

Q

Query - Interface in org.jnosql.query
Query languages or data query languages (DQLs) are computer languages used to make queries in databases and information systems.
QueryException - Exception in org.jnosql.query
The exception class to query
QueryException(String) - Constructor for exception org.jnosql.query.QueryException
creates an error with an error message
QueryException(String, Throwable) - Constructor for exception org.jnosql.query.QueryException
A new exception with a Throwable error

R

RemoveQuery - Interface in org.jnosql.query
To delete one or more entities use the DEL statement.
RemoveQuerySupplier - Interface in org.jnosql.query
A supplier to RemoveQuery

S

SelectQuery - Interface in org.jnosql.query
The select statement reads one or more fields for one or more entities.
SelectQuerySupplier - Interface in org.jnosql.query
A supplier to SelectQuery
Sort - Interface in org.jnosql.query
it is used to sort the result-set in ascending or descending order.
Sort.SortType - Enum in org.jnosql.query
The sort type
StringValue - Interface in org.jnosql.query
The String as value

U

UpdateQuery - Interface in org.jnosql.query
Updating an entity is done using an UPDATE statement.
UpdateQuerySupplier - Interface in org.jnosql.query
A supplier to UpdateQuery

V

Value<T> - Interface in org.jnosql.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.
valueOf(String) - Static method in enum org.jnosql.query.Operator
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jnosql.query.Sort.SortType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jnosql.query.ValueType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.jnosql.query.Operator
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jnosql.query.Sort.SortType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jnosql.query.ValueType
Returns an array containing the constants of this enum type, in the order they are declared.
ValueType - Enum in org.jnosql.query
The value type

W

Where - Interface in org.jnosql.query
The WHERE clause specifies a filter to the result.
A C D F G I J N O P Q R S U V W 
Skip navigation links

Copyright © 2018. All rights reserved.