public static interface EntityEngine.SelectFromContext<E>
Modifier and Type | Method and Description |
---|---|
EntityEngine.WhereContext<E> |
findAll() |
E |
findById(Long id) |
EntityEngine.WhereEqualContext<E> |
whereEqual(String fieldName,
Long value) |
EntityEngine.WhereEqualContext<E> |
whereEqual(String fieldName,
String value) |
<V> EntityEngine.WhereInContext<E> |
whereIn(String fieldName,
Collection<V> values)
Supports IN operator.
|
EntityEngine.WhereContext<E> findAll()
EntityEngine.WhereEqualContext<E> whereEqual(String fieldName, String value)
EntityEngine.WhereEqualContext<E> whereEqual(String fieldName, Long value)
<V> EntityEngine.WhereInContext<E> whereIn(String fieldName, Collection<V> values)
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)).
Copyright © 2002-2024 Atlassian. All Rights Reserved.