Package | Description |
---|---|
com.danielbchapman.groups | |
com.danielbchapman.groups.test |
Modifier and Type | Method and Description |
---|---|
static InstructionType |
InstructionType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstructionType[] |
InstructionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
SubGroup |
AbstractGroup.find(java.lang.String[] strings,
JSON[] jsons,
InstructionType[] instructions) |
SubGroup |
AbstractGroup.find(java.lang.String field,
JSON json,
InstructionType type)
Find a set of items and wrap them into a SubGroup for chainable API
|
SubGroup |
AbstractGroup.find(java.lang.String field,
java.lang.Object value,
InstructionType type)
Find a set of items and wrap them into a SubGroup for chainable API
|
java.util.Set<Item> |
AbstractGroup.findSet(java.lang.String[] fields,
JSON[] values,
InstructionType[] instructions)
This method is a batch operation on the find providing a union of
the sets.
|
java.util.Set<Item> |
AbstractGroup.findSet(java.lang.String field,
JSON value,
InstructionType instruction)
Find an element in the collection by a query.
|
java.util.Set<Item> |
AbstractGroup.findSet(java.lang.String field,
java.lang.Object value,
InstructionType instruction) |
Modifier and Type | Method and Description |
---|---|
static void |
TestCollection.printSearch(Group collection,
java.lang.String field,
JSON value,
InstructionType type) |