Class Predicate
java.lang.Object
oracle.bpel.services.workflow.repos.PredicateConstants
oracle.bpel.services.workflow.repos.Predicate
- All Implemented Interfaces:
Serializable
public class Predicate
extends oracle.bpel.services.workflow.repos.PredicateConstants
- See Also:
-
Field Summary
Fields inherited from class oracle.bpel.services.workflow.repos.PredicateConstants
AND, DATATYPE_NAMES, LOWER, NUMBER_OF_OPERATORS, OP_AFTER, OP_BEFORE, OP_BEGINS, OP_CONTAINS, OP_DATE_GT, OP_DATE_GTE, OP_DATE_LT, OP_DATE_LTE, OP_DATE_NEQ, OP_ENDS, OP_EQ, OP_GT, OP_GTE, OP_IN, OP_IS_IN_FUTURE, OP_IS_IN_PAST, OP_IS_NOT_NULL, OP_IS_NULL, OP_LAST_N_DAYS, OP_LIKE, OP_LT, OP_LTE, OP_NEQ, OP_NEXT_N_DAYS, OP_NOT_BEGINS, OP_NOT_CONTAINS, OP_NOT_ENDS, OP_NOT_IN, OP_NOT_LIKE, OP_ON, OPERATOR_NAMES, OR, SYSDATE, UPPER, VALID_DATE_OPERATORS, VALID_DEFAULT_OPERATORS, VALID_JOIN_OPERATORS, VALID_STRING_OPERATORS
-
Constructor Summary
ConstructorsConstructorDescriptionPredicate
(PredicateType predicateType) Constructor to create a predicate from PredicateType.Constructor to create the simple predicate based on one value.Constructor to create the simple predicate based on one value with ignore case.Constructor to create the simple predicate based on list of values.Constructor to create the simple predicate based on list of values.Constructor to create the join predicate based on columns.Predicate
(Column column, int operation, IdentityType identityType) Constructor to create the simple predicate based on IdentityType value.Predicate
(Column column, int operation, IdentityType identityType, boolean ignoreCase) Constructor to create the simple predicate based on IdentityType value with ignore case.Constructor to create the complex predicate from two predicates using logical opeartor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
To add one more filtering criteria to existing predicate by using logical operator based on one value.void
To add one more filtering criteria to existing predicate by using logical operator based on one value with ignore case.void
To add one more filtering criteria to existing predicate by using logical operator based on list of values.void
To add one more filtering criteria to existing predicate by using logical operator based on list of values with ignore case.void
To add one more filtering criteria to existing predicate by using logical operator based on columns.void
addClause
(int logicalOperator, Column column, int operation, IdentityType identityTypeValue) To add one more filtering criteria to existing predicate by using logical operator based on an identityType value.void
addClause
(int logicalOperator, Column column, int operation, IdentityType identityTypeValue, boolean ignoreCase) To add one more filtering criteria to existing predicate by using logical operator based on an identityType value.static Predicate
createPredicate
(List<PredicateClauseType> predicateClauseList, String tableName) Builds Predicate from supplied List of PredicateClauseType JAXB objects, using the supplied table name where clauses do not specify a table.static void
enableXMLSerialization
(boolean enableXMLSerialization) Deprecated.Returns the predicate JAXB object.Return predicate as a stringDeprecated.Deprecated.void
toString()
Return predicate as a stringMethods inherited from class oracle.bpel.services.workflow.repos.PredicateConstants
getLogicalOperator, getOperationName, getOperationNumber, getOperator
-
Constructor Details
-
Predicate
Constructor to create the simple predicate based on one value.- Parameters:
column
- String name of the columnoperation
- int opertaion on the predicatevalue
- Object search value- Throws:
WorkflowException
-
Predicate
Constructor to create the simple predicate based on IdentityType value.- Parameters:
column
- String name of the columnoperation
- int opertaion on the predicateidentityType
- IdentityType- Throws:
WorkflowException
-
Predicate
public Predicate(Column column, int operation, IdentityType identityType, boolean ignoreCase) throws WorkflowException Constructor to create the simple predicate based on IdentityType value with ignore case.- Parameters:
column
- String name of the columnoperation
- int opertaion on the predicateidentityType
- IdentityTypeignoreCase
- boolean true/false- Throws:
WorkflowException
-
Predicate
public Predicate(Column column, int operation, Object value, boolean ignoreCase) throws WorkflowException Constructor to create the simple predicate based on one value with ignore case.- Parameters:
column
- Column object to query againstoperation
- int opertaion on the predicatevalue
- Object search valueignoreCase
- boolean true/false- Throws:
WorkflowException
-
Predicate
Constructor to create the simple predicate based on list of values. It is used to create the predicate for IN.- Parameters:
column
- Column object to query againstoperation
- int opertaion on the predicatevalues
- Object search value- Throws:
WorkflowException
-
Predicate
public Predicate(Column column, int operation, List values, boolean ignoreCase) throws WorkflowException Constructor to create the simple predicate based on list of values. It is used to create the predicate for IN with ignore case.- Parameters:
column
- Column object to query againstoperation
- int opertaion on the predicatevalues
- List search valuesignoreCase
- boolean true/false- Throws:
WorkflowException
-
Predicate
Constructor to create the join predicate based on columns. It is used to create the predicate for join.- Parameters:
column1
- Column for joiningoperation
- int opertaion on the predicatecolumn2
- Column for joining- Throws:
WorkflowException
-
Predicate
Constructor to create the complex predicate from two predicates using logical opeartor.- Parameters:
pred1
- Predicatelogical
- int logical operaton like AND or ORpred2
- Predicate- Throws:
WorkflowException
-
Predicate
Constructor to create a predicate from PredicateType.- Parameters:
predicateType
- PredicateType- Throws:
WorkflowException
-
-
Method Details
-
createPredicate
public static Predicate createPredicate(List<PredicateClauseType> predicateClauseList, String tableName) throws WorkflowException Builds Predicate from supplied List of PredicateClauseType JAXB objects, using the supplied table name where clauses do not specify a table. If List is null or empty, returns null. Intended for internal use only, to support backwards compatibility for deprecated PredicateClauseType objects.- Parameters:
predicateClauseList
- List of PredicateClauseType objects to build Predicate from.tableName
- name of table this predicate if for. If no value is specified, the table is assumed to be WFTask- Returns:
- Predicate object, or null if List is null or empty.
- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column, int operation, Object value) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on one value.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn
- Columnoperation
- int Operation to filter the datavalue
- Object search value- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column, int operation, IdentityType identityTypeValue, boolean ignoreCase) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on an identityType value.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn
- Columnoperation
- int Operation to filter the dataidentityTypeValue
- IdentityTypeignoreCase
- boolean true/false- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column, int operation, IdentityType identityTypeValue) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on an identityType value.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn
- Columnoperation
- int Operation to filter the dataidentityTypeValue
- IdentityType- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column, int operation, Object value, boolean ignoreCase) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on one value with ignore case.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn
- Columnoperation
- int Operation to filter the datavalue
- Object search valueignoreCase
- boolean true/false- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column, int operation, List values) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on list of values.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn
- Columnoperation
- int Operation to filter the datavalues
- List of values- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column, int operation, List values, boolean ignoreCase) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on list of values with ignore case.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn
- Columnoperation
- int Operation to filter the datavalues
- List of valuesignoreCase
- boolean true/false- Throws:
WorkflowException
-
addClause
public void addClause(int logicalOperator, Column column1, int operation, Column column2) throws WorkflowException To add one more filtering criteria to existing predicate by using logical operator based on columns.- Parameters:
logicalOperator
- int Operator like AND or ORcolumn1
- Columnoperation
- int Operation to filter the datacolumn2
- Column- Throws:
WorkflowException
-
enableXMLSerialization
public static void enableXMLSerialization(boolean enableXMLSerialization) Deprecated."This is not required" -
getPredicateType
Returns the predicate JAXB object. This could be a simple predicate object or a complex predicate object. -
toString
Return predicate as a string -
getString
Return predicate as a string- Returns:
- String String representation of this predicate
-
getTables
Deprecated.This method is a no operation, it is available for backward compatability- Returns:
- null
-
getValues
Deprecated.This method is a no operation, it is available for backward compatability- Returns:
- null
-
setLocale
-
getLocale
-