|
Public Types |
| enum | Constraint {
MINIMUM,
MAXIMUM,
MINMAX,
EXACT,
STRING_WILDCHAR
} |
Public Member Functions |
| | Filter (Field field, boolean isLethal, Comparable minimum, Comparable maximum, boolean notFilter) throws InvalidFilterConstraintException |
| | Filter (Field field, boolean isLethal, Integer exact, boolean notFilter) throws InvalidFilterConstraintException |
| | Filter (Field field, boolean isLethal, Integer minimum, Integer maximum, boolean notFilter) throws InvalidFilterConstraintException |
| | Filter (Field field, boolean isLethal, Object exact, boolean notFilter) throws InvalidFilterConstraintException |
| | Filter (Field field, boolean isLethal, String regularExpression, boolean notFilter) throws InvalidFilterConstraintException, PatternSyntaxException |
| | Filter (Field field, boolean isLethal, String minimum, String maximum, boolean notFilter) throws InvalidFilterConstraintException |
| | Filter (Field field, boolean isLethal, Date minimum, Date maximum, boolean notFilter) throws InvalidFilterConstraintException |
| boolean | applyTo (ILogEntry logEntry, boolean lethalCircumstances) |
| boolean | applyTo (Object obj) |
| String | toString () |
| String | toXMLString () |
| boolean | notPolicyApplyed () |
| boolean | getIsLethal () |
| Field | getField () |
Static Public Member Functions |
| Filter | buildFilter (Field field, String lethal, String not, String min, String minType, String max, String maxType, String exact, String exactType, String wildChar) throws Exception |
Public Attributes |
| Field | field = null |
| Constraint | constraint = null |
| String | regularExpression = null |
| Comparable | minimum = null |
| Comparable | maximum = null |
| Object | exact = null |
Package Types |
Private Member Functions |
| | Filter (Field field, Constraint constraint, boolean isLethal, boolean notFilter) |
Private Attributes |
| boolean | isLethal = false |
| boolean | notFilter = false |