Package com.atlassian.jira.entity
Interface EntityEngine.SelectFromContext<E>
- Enclosing interface:
- EntityEngine
public static interface EntityEngine.SelectFromContext<E>
-
Method Summary
Modifier and TypeMethodDescriptionfindAll()
whereEqual
(String fieldName, Long value) whereEqual
(String fieldName, String value) whereIn
(String fieldName, Collection<V> values) Supports IN operator.
-
Method Details
-
findAll
EntityEngine.WhereContext<E> findAll() -
findById
-
whereEqual
-
whereEqual
-
whereIn
Supports IN operator.NOTE: No use cases now, but the current design does not allow us to easily mix different types of contexts, e.g., (f1 = v1 and f2 in (v2, v3)).
-