public class AndExpr extends AbstractAmberExpr
IS_INNER_JOIN, USES_DATA
Constructor and Description |
---|
AndExpr() |
Modifier and Type | Method and Description |
---|---|
void |
add(AmberExpr expr)
Adds a new component.
|
AmberExpr |
bindSelect(QueryParser parser)
Binds the expression as a select item.
|
static AmberExpr |
create(AmberExpr left,
AmberExpr right)
Creates the and.
|
boolean |
exists(FromItem from)
Returns true if the from item is used in the expression
|
void |
generateHaving(CharBuffer cb)
Generates the having expression.
|
void |
generateJoin(CharBuffer cb)
Generates the join expression.
|
void |
generateUpdateWhere(CharBuffer cb)
Generates the (update) where expression.
|
void |
generateWhere(CharBuffer cb)
Generates the where expression.
|
java.util.ArrayList<AmberExpr> |
getComponents()
Returns the components.
|
AmberExpr |
getSingle()
Returns a single expression.
|
boolean |
isBoolean()
Returns true for a boolean expression.
|
AmberExpr |
replaceJoin(JoinExpr join)
Returns true if the expression uses the from item.
|
void |
setInternalArgType(AmberExpr other)
Binds the argument type based on another expr.
|
boolean |
usesFrom(FromItem from,
int type,
boolean isNot)
Returns true if the expression uses the from item.
|
createBoolean, exists, findItem, generateSelect, getCacheObject, getColumnCount, getObject, getType, hasRelationship, usesFrom
public static AmberExpr create(AmberExpr left, AmberExpr right) throws QueryParseException
QueryParseException
public boolean isBoolean()
isBoolean
in interface AmberExpr
isBoolean
in class AbstractAmberExpr
public void add(AmberExpr expr)
public java.util.ArrayList<AmberExpr> getComponents()
public AmberExpr bindSelect(QueryParser parser)
bindSelect
in interface AmberExpr
bindSelect
in class AbstractAmberExpr
public AmberExpr getSingle()
public boolean usesFrom(FromItem from, int type, boolean isNot)
usesFrom
in interface AmberExpr
usesFrom
in class AbstractAmberExpr
public boolean exists(FromItem from)
exists
in interface AmberExpr
exists
in class AbstractAmberExpr
public AmberExpr replaceJoin(JoinExpr join)
replaceJoin
in interface AmberExpr
replaceJoin
in class AbstractAmberExpr
public void generateWhere(CharBuffer cb)
generateWhere
in interface AmberExpr
generateWhere
in class AbstractAmberExpr
public void generateUpdateWhere(CharBuffer cb)
generateUpdateWhere
in interface AmberExpr
generateUpdateWhere
in class AbstractAmberExpr
public void generateHaving(CharBuffer cb)
generateHaving
in interface AmberExpr
generateHaving
in class AbstractAmberExpr
public void generateJoin(CharBuffer cb)
generateJoin
in interface AmberExpr
generateJoin
in class AbstractAmberExpr
public void setInternalArgType(AmberExpr other)
setInternalArgType
in interface AmberExpr
setInternalArgType
in class AbstractAmberExpr