public interface Visitor
Modifier and Type | Method and Description |
---|---|
void |
and(And and)
Handles an And expression
|
void |
contains(Contains contains)
Handles a Contains expression.
|
void |
equal(Equal equal)
Handles an Equal expression
|
void |
greaterThan(GreaterThan greaterThan)
Handles a LessThan expression
|
void |
in(In in)
Handles an In expression
|
void |
isNotNull(IsNotNull isNotNull)
Handles an IsNotNull expression
|
void |
isNull(IsNull isNull)
Handles an IsNull expression
|
<T extends PortalEntity> |
join(Join<T> join)
Handles a Join expression
|
void |
lessThan(LessThan lessThan)
Handles a LessThan expression
|
void |
like(Like like)
Handles a Like expression.
|
void |
not(Not not)
Handles a Not expression
|
void |
notEqual(NotEqual notEqual)
Handles a NotEqual expression
|
void |
or(Or or)
Handles an Or expression
|
void and(And and)
and
- the And expressionvoid or(Or or)
or
- the Or expressionvoid not(Not not)
not
- the Not expressionvoid equal(Equal equal)
equal
- the Equal expressionvoid notEqual(NotEqual notEqual)
notEqual
- the NotEqual expressionvoid like(Like like)
like
- the Like expressionvoid contains(Contains contains)
contains
- the Contains expressionvoid isNotNull(IsNotNull isNotNull)
isNotNull
- the IsNotNull expressionvoid isNull(IsNull isNull)
isNull
- the IsNull expressionvoid lessThan(LessThan lessThan)
lessThan
- the LessThan expressionvoid greaterThan(GreaterThan greaterThan)
greaterThan
- the LessThan expressionvoid in(In in)
in
- the In expression<T extends PortalEntity> void join(Join<T> join)
join
- the Join expression