Package | Description |
---|---|
com.amazon.carbonado.filter |
Contains classes for representing query filters.
|
Modifier and Type | Method and Description |
---|---|
RelOp |
PropertyFilter.getOperator() |
RelOp |
RelOp.reverse() |
static RelOp |
RelOp.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelOp[] |
RelOp.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Filter<S> |
Filter.and(java.lang.String propertyName,
RelOp operator)
Returns a combined filter instance that accepts records which are only
accepted by this filter and the one given.
|
Filter<S> |
Filter.and(java.lang.String propertyName,
RelOp operator,
java.lang.Object constantValue)
Returns a combined filter instance that accepts records which are only
accepted by this filter and the one given.
|
Filter<S> |
Filter.or(java.lang.String propertyName,
RelOp operator)
Returns a combined filter instance that accepts records which are
accepted either by this filter or the one given.
|
Filter<S> |
Filter.or(java.lang.String propertyName,
RelOp operator,
java.lang.Object constantValue)
Returns a combined filter instance that accepts records which are
accepted either by this filter or the one given.
|
Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.