public abstract static class Select.WhereClauseAwareContext<E> extends Select.ExecutableContext<E>
Where clauses can be accepted until the condition chain is terminated by a .orderBy
or .runWith
.
SelectQuery.ExecutionContext<E>
queryBuilder
Modifier | Constructor and Description |
---|---|
protected |
WhereClauseAwareContext(com.atlassian.jira.entity.Select.QueryBuilder<E> queryBuilder) |
Modifier and Type | Method and Description |
---|---|
Select.WhereContext<E> |
byId(Long id) |
abstract Select.OrderByContext<E> |
orderBy(String... orderByColumn) |
abstract Select.WhereContext<E> |
where(String fieldName,
org.ofbiz.core.entity.EntityOperator operator,
Long value) |
abstract Select.WhereContext<E> |
whereCondition(org.ofbiz.core.entity.EntityCondition condition) |
abstract Select.WhereContext<E> |
whereEqual(String field,
Long value) |
abstract Select.WhereContext<E> |
whereEqual(String field,
String value) |
Select.WhereContext<E> |
whereLike(String field,
String pattern) |
Select.WhereContext<E> |
whereNull(String field) |
runWith, runWith
protected WhereClauseAwareContext(com.atlassian.jira.entity.Select.QueryBuilder<E> queryBuilder)
public abstract Select.WhereContext<E> whereEqual(String field, String value)
public abstract Select.WhereContext<E> whereEqual(String field, Long value)
public abstract Select.WhereContext<E> whereCondition(org.ofbiz.core.entity.EntityCondition condition)
public abstract Select.WhereContext<E> where(String fieldName, org.ofbiz.core.entity.EntityOperator operator, Long value)
public abstract Select.OrderByContext<E> orderBy(String... orderByColumn)
public final Select.WhereContext<E> byId(@Nonnull Long id)
public final Select.WhereContext<E> whereNull(String field)
public final Select.WhereContext<E> whereLike(String field, String pattern)
Copyright © 2002-2024 Atlassian. All Rights Reserved.