| Package | Description |
|---|---|
| org.eiichiro.acidhouse |
Acid House - NoSQL Killer Tune.
|
| org.eiichiro.acidhouse.metamodel |
Metamodel package for Typesafe command builder API and Aggregation API.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ComparableFilter<T extends Comparable<T>>
ComparableFilter is a Filter implementation to do filtering
comparable property values (Make sure these property value types implements
Comparable). |
class |
InFilter<T extends Comparable<T>>
InFilter is a Filter implementation to do filtering the
property which matches to any of the specified values (This is well-known as
SQL 'IN' predicate). |
| Modifier and Type | Method and Description |
|---|---|
Update<E> |
Update.filter(Filter<?>... filters)
Qualifies entities to be updated with the specified
Filters. |
GetScalar<E,R> |
GetScalar.filter(Filter<?>... filters)
Qualifies entities to be retrieved with the specified
Filters. |
GetList<E> |
GetList.filter(Filter<?>... filters)
Qualifies entities to be retrieved with the specified
Filters. |
Delete<E> |
Delete.filter(Filter<?>... filters)
Qualifies entities to be deleted with the specified
Filters. |
| Modifier and Type | Method and Description |
|---|---|
Filter<T> |
ComparableProperty.equalTo(T value)
Creates a
Filter to indicate whether this property is equal to
the specified value or not (==). |
Filter<T> |
ComparableProperty.greaterThan(T value)
Creates a
Filter to indicate whether this property is greater
than the specified value or not (>). |
Filter<T> |
ComparableProperty.greaterThanOrEqualTo(T value)
Creates a
Filter to indicate whether this property is greater
than or equal to the specified value or not (>=). |
Filter<T> |
ComparableProperty.in(T... values)
Creates a
Filter to indicate whether this property is contained
in the specified value or not (IN(...)). |
Filter<T> |
ComparableProperty.lessThan(T value)
Creates a
Filter to indicate whether this property is less than
the specified value or not (<). |
Filter<T> |
ComparableProperty.lessThanOrEqualTo(T value)
Creates a
Filter to indicate whether this property is less than
or equal to the specified value or not (<=). |
Filter<T> |
ComparableProperty.notEqualTo(T value)
Creates a
Filter to indicate whether this property is not equal
to the specified value or not (!=, <>). |
Copyright © 2009-2014 Eiichiro Uchiumi. All Rights Reserved.