| Package | Description |
|---|---|
| org.calrissian.mango.domain |
| Modifier and Type | Method and Description |
|---|---|
<T> Tuple<T> |
TupleStore.get(String key)
Retrieves the first tuple returned for the specified key.
|
<T> Tuple<T> |
BaseTupleStore.get(String key)
A get operation for single-valued keys
|
<T> Tuple<T> |
TupleStore.remove(String key)
Removes the first tuple belonging to the specified key.
|
<T> Tuple<T> |
BaseTupleStore.remove(String key) |
<T> Tuple<T> |
TupleStore.remove(Tuple<T> t)
Removes the specified tuple
|
<T> Tuple<T> |
BaseTupleStore.remove(Tuple<T> t) |
| Modifier and Type | Method and Description |
|---|---|
Collection<Tuple> |
TupleStore.getAll(String key)
Retrieves all the tuples for the specified key.
|
Collection<Tuple> |
BaseTupleStore.getAll(String key)
A get operation for multi-valued keys
|
Collection<Tuple> |
TupleStore.getTuples()
Retrieves all the getTuples.
|
Collection<Tuple> |
BaseTupleStore.getTuples()
Returns all the getTuples set on the current entity
|
Collection<Tuple> |
TupleStore.removeAll(Collection<Tuple> tuples) |
Collection<Tuple> |
BaseTupleStore.removeAll(Collection<Tuple> tuples) |
Collection<Tuple> |
TupleStore.removeAll(String key)
Revoves all the tuples with the given key.
|
Collection<Tuple> |
BaseTupleStore.removeAll(String key) |
| Modifier and Type | Method and Description |
|---|---|
void |
TupleStore.put(Tuple tuple)
Puts a single tuple in the current data store
|
void |
BaseTupleStore.put(Tuple tuple) |
<T> Tuple<T> |
TupleStore.remove(Tuple<T> t)
Removes the specified tuple
|
<T> Tuple<T> |
BaseTupleStore.remove(Tuple<T> t) |
| Modifier and Type | Method and Description |
|---|---|
void |
TupleStore.putAll(Iterable<Tuple> tuples)
Adds all the given getTuples to the current data store
|
void |
BaseTupleStore.putAll(Iterable<Tuple> tuples) |
Collection<Tuple> |
TupleStore.removeAll(Collection<Tuple> tuples) |
Collection<Tuple> |
BaseTupleStore.removeAll(Collection<Tuple> tuples) |
Copyright © 2017 Calrissian. All rights reserved.