See: Description
| Interface | Description |
|---|---|
| Criteria |
Criteria interface defines a boolean function that computes a search match result
|
| Class | Description |
|---|---|
| AlwaysMatch |
Criteria that always return true
|
| And |
A search criteria composed of the logical "and" of two or more other criteria
|
| BaseCriteria |
Base class for all criteria types
|
| Between |
Range criteria
|
| ComparableValue |
Abstract base class for criteria involving
Comparable values |
| EqualTo |
A comparison operator meaning Java "equals to" condition
|
| GreaterThan |
Greater than criteria
|
| GreaterThanOrEqual |
Greater than or equal criteria
|
| ILike |
A regular expression criteria that matches attribute string values.
|
| InCollection |
Criteria for inclusion in a given Collection (presumably a Set) of values
|
| IsNull |
Tests whether the value of attribute with given name is null
|
| LessThan |
Less than criteria
|
| LessThanOrEqual |
Less than or equal criteria
|
| Not |
A search criteria composed of the logical "not" (ie.
|
| NotEqualTo |
Criteria for plain "not equals to" condition
|
| NotILike |
Inverse of
ILike |
| NotNull | |
| Or |
A search criteria composed of the logical "or" of two or more other criteria
|
Copyright 2001-2021, Terracotta, Inc.