T - the type of the reference
public class Join<T extends PortalEntity>
extends java.lang.Object
| Constructor and Description |
|---|
Join(Reference<T> reference, Subquery<T> subquery) |
| Modifier and Type | Method and Description |
|---|---|
void |
accept(Visitor visitor)
Accepts a visitor
|
Expression |
and(Expression expression)
Creates an And expression which will be a logical "and" of this expression and the expression passed in as a parameter
|
Reference<T> |
getReference()
Gets the reference
|
Subquery<T> |
getSubquery()
Gets the subquery
|
Expression |
not()
Creates a Not expression which will be the logical "not" of this epxression
|
Expression |
or(Expression expression)
Creates an Or expression which will be a logical "or" of this expression and the expression passed in as a parameter
|
java.lang.String |
toString() |
public void accept(Visitor visitor)
Expressionvisitor - the visitorpublic java.lang.String toString()
toString in class java.lang.Objectpublic Expression and(Expression expression)
and in interface Expressionexpression - the other expressionpublic Expression or(Expression expression)
or in interface Expressionexpression - the other expressionpublic Expression not()
not in interface Expression