public static interface

EntityEngine.WhereContext

com.atlassian.jira.entity.EntityEngine.WhereContext<E>
Known Indirect Subclasses

Summary

Public Methods
List<E> list()
List<E> orderBy(String... orderByColumn)
E singleValue()
Returns the single Entity that is the result of this query.

Public Methods

public List<E> list ()

public List<E> orderBy (String... orderByColumn)

public E singleValue ()

Returns the single Entity that is the result of this query.

Will return null if no rows were returned by the DB query. Throws com.atlassian.jira.jql.builder.PrecedenceSimpleClauseBuilder.IllegalState if more than one row is found.

Returns
  • the Entity found or null of none found.