|
Collaboration API Documentation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Base interface for a node that makes up the property based search criteria. Identifiers for the different types of nodes are defined in this interface.
Field Summary | |
static int |
AND
Operator that does a boolean And of other conditions. |
static int |
EQUALS
Tests two operands for equality. |
static int |
GREATERTHAN
Tests that the first operand is greater than the second. |
static int |
GREATERTHANOREQUAL
Tests that the first operand is greater than or equal than the second. |
static int |
IN
Tests that the first operand is in the list property indicated by the second operand. |
static int |
ISNOTNULL
Tests that a property is not null. |
static int |
ISNULL
Tests that a property is null. |
static int |
LESSTHAN
Tests that the first operand is less than the second. |
static int |
LESSTHANOREQUAL
Tests that the first operand is less than or greater than the second. |
static int |
LIKE
Tests that the first operand (a string) is Like the second. |
static int |
LITERALOPERAND
An operand that is a literal value. |
static int |
NOTEQUAL
Tests two operands for non-equality. |
static int |
NOTLIKE
Tests that the first operand (a string) is not like the second. |
static int |
OBJECTFUNCTION
An operand that is an Object function. |
static int |
OR
Operator that does a boolean Or of other conditions. |
static int |
PROPERTYOPERAND
An operand that is a property. |
Method Summary | |
int |
getNodeType()
Returns the node type of this node. |
Field Detail |
public static final int AND
public static final int OR
public static final int EQUALS
public static final int NOTEQUAL
public static final int LESSTHAN
public static final int GREATERTHAN
public static final int LESSTHANOREQUAL
public static final int GREATERTHANOREQUAL
public static final int LIKE
public static final int NOTLIKE
public static final int IN
public static final int ISNULL
public static final int ISNOTNULL
public static final int PROPERTYOPERAND
public static final int LITERALOPERAND
public static final int OBJECTFUNCTION
Method Detail |
public int getNodeType()
|
Collaboration API Documentation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |