Package jakarta.nosql.column
Interface ColumnDeleteQuery.ColumnDeleteNameCondition
-
- All Known Subinterfaces:
ColumnDeleteQuery.ColumnDeleteNotCondition
- Enclosing interface:
- ColumnDeleteQuery
public static interface ColumnDeleteQuery.ColumnDeleteNameCondition
The base to delete name condition
-
-
Method Summary
-
-
-
Method Detail
-
eq
<T> ColumnDeleteQuery.ColumnDeleteWhere eq(T value)
Creates the equals conditionCondition.EQUALS
- Type Parameters:
T
- the type- Parameters:
value
- the value to the condition- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
like
ColumnDeleteQuery.ColumnDeleteWhere like(String value)
Creates the like conditionCondition.LIKE
- Parameters:
value
- the value to the condition- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
gt
<T> ColumnDeleteQuery.ColumnDeleteWhere gt(T value)
Creates the greater than conditionCondition.GREATER_THAN
- Type Parameters:
T
- the type- Parameters:
value
- the value to the condition- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
gte
<T> ColumnDeleteQuery.ColumnDeleteWhere gte(T value)
Creates the greater equals than conditionCondition.GREATER_EQUALS_THAN
- Type Parameters:
T
- the type- Parameters:
value
- the value to the condition- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
lt
<T> ColumnDeleteQuery.ColumnDeleteWhere lt(T value)
Creates the lesser than conditionCondition.LESSER_THAN
- Type Parameters:
T
- the type- Parameters:
value
- the value to the condition- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
lte
<T> ColumnDeleteQuery.ColumnDeleteWhere lte(T value)
Creates the lesser equals than conditionCondition.LESSER_EQUALS_THAN
- Type Parameters:
T
- the type- Parameters:
value
- the value to the condition- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
between
<T> ColumnDeleteQuery.ColumnDeleteWhere between(T valueA, T valueB)
Creates the between conditionCondition.EQUALS
- Type Parameters:
T
- the type- Parameters:
valueA
- the values within a given rangevalueB
- the values within a given range- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when either valueA or valueB are null
-
in
<T> ColumnDeleteQuery.ColumnDeleteWhere in(Iterable<T> values)
Creates in conditionCondition.IN
- Type Parameters:
T
- the type- Parameters:
values
- the values- Returns:
- the
ColumnDeleteQuery.ColumnDeleteWhere
- Throws:
NullPointerException
- when value is null
-
not
ColumnDeleteQuery.ColumnDeleteNotCondition not()
Creates the equals conditionCondition.NOT
-
-