com.plumtree.server
Class PT_BOOLOPS

java.lang.Object
  extended by com.plumtree.server.PT_BOOLOPS

public final class PT_BOOLOPS
extends java.lang.Object

Boolean operators (AND and OR) as used in Plumtree filters- the filter operator is a PT_BOOLOPS.

Author:
michaels
See Also:
IPTPropertyFilterStatement

Field Summary
static int PT_BOOLOP_AND
          The "AND" boolean operator- logically equivalent to the Java "&&" operator
static int PT_BOOLOP_OR
          The "OR" boolean operator- logically equivalent to the Java "||" operator
 
Constructor Summary
PT_BOOLOPS()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PT_BOOLOP_AND

public static final int PT_BOOLOP_AND
The "AND" boolean operator- logically equivalent to the Java "&&" operator

See Also:
Constant Field Values

PT_BOOLOP_OR

public static final int PT_BOOLOP_OR
The "OR" boolean operator- logically equivalent to the Java "||" operator

See Also:
Constant Field Values
Constructor Detail

PT_BOOLOPS

public PT_BOOLOPS()