Package | Description |
---|---|
com.kabira.platform |
Managed Object Services
|
Modifier and Type | Method and Description |
---|---|
int |
KeyQuery.cardinality()
Returns the number of instances of the given key.
|
void |
KeyQuery.defineQuery(KeyFieldValueList keyFields)
Defines the fields that form a key query.
|
T |
KeyQuery.getOrCreateSingleResult(LockMode objectLock,
KeyFieldValueList additionalFields)
Returns the instance for the given unique key.
|
java.lang.Iterable<T> |
KeyQuery.getResults(KeyOrderedBy orderBy,
LockMode objectLock)
Returns the results for a query using an ordered key.
|
java.lang.Iterable<T> |
KeyQuery.getResults(LockMode objectLock)
Returns the results of a query.
|
T |
KeyQuery.getSingleResult(LockMode objectLock)
Returns the instance matching the given unique key.
|
java.lang.String |
KeyQuery.toString()
Creates a human readable query string.
|