| Package | Description |
|---|---|
| com.hammurapi.store |
This package contains interfaces and classes which define object store and provide foundation for implementations.
|
| Modifier and Type | Method and Description |
|---|---|
static Store.ViewType |
Store.ViewType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Store.ViewType[] |
Store.ViewType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
S |
UnmodifiableStore.createView(Predicate<T,S> selector,
Store.ViewType viewType) |
S |
Store.createView(Predicate<T,S> selector,
Store.ViewType viewType)
Creates a view - a store which sees only objects matching the given selector.
|
S |
LiveView.createView(Predicate<T,S> selector,
Store.ViewType viewType) |
S |
DeputyStore.createView(Predicate<T,S> selector,
Store.ViewType viewType) |
S |
AbstractStore.createView(Predicate<T,S> selector,
Store.ViewType viewType) |