public class RoutingProfileSearchCriteria
extends java.lang.Object
implements java.io.Serializable
The search criteria to be used to return routing profiles.
The name and description fields support "contains"
queries with a minimum of 2 characters and a maximum of 25 characters. Any
queries with character lengths outside of this range will throw invalid
results.
| Constructor and Description |
|---|
RoutingProfileSearchCriteria() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<RoutingProfileSearchCriteria> |
getAndConditions()
A list of conditions which would be applied together with an AND
condition.
|
java.util.List<RoutingProfileSearchCriteria> |
getOrConditions()
A list of conditions which would be applied together with an OR
condition.
|
StringCondition |
getStringCondition()
A leaf node condition which can be used to specify a string condition.
|
int |
hashCode() |
void |
setAndConditions(java.util.Collection<RoutingProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND
condition.
|
void |
setOrConditions(java.util.Collection<RoutingProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR
condition.
|
void |
setStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
RoutingProfileSearchCriteria |
withAndConditions(java.util.Collection<RoutingProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND
condition.
|
RoutingProfileSearchCriteria |
withAndConditions(RoutingProfileSearchCriteria... andConditions)
A list of conditions which would be applied together with an AND
condition.
|
RoutingProfileSearchCriteria |
withOrConditions(java.util.Collection<RoutingProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR
condition.
|
RoutingProfileSearchCriteria |
withOrConditions(RoutingProfileSearchCriteria... orConditions)
A list of conditions which would be applied together with an OR
condition.
|
RoutingProfileSearchCriteria |
withStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
|
public java.util.List<RoutingProfileSearchCriteria> getOrConditions()
A list of conditions which would be applied together with an OR condition.
A list of conditions which would be applied together with an OR condition.
public void setOrConditions(java.util.Collection<RoutingProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR condition.
orConditions - A list of conditions which would be applied together with an OR condition.
public RoutingProfileSearchCriteria withOrConditions(RoutingProfileSearchCriteria... orConditions)
A list of conditions which would be applied together with an OR condition.
Returns a reference to this object so that method calls can be chained together.
orConditions - A list of conditions which would be applied together with an OR condition.
public RoutingProfileSearchCriteria withOrConditions(java.util.Collection<RoutingProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR condition.
Returns a reference to this object so that method calls can be chained together.
orConditions - A list of conditions which would be applied together with an OR condition.
public java.util.List<RoutingProfileSearchCriteria> getAndConditions()
A list of conditions which would be applied together with an AND condition.
A list of conditions which would be applied together with an AND condition.
public void setAndConditions(java.util.Collection<RoutingProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND condition.
andConditions - A list of conditions which would be applied together with an AND condition.
public RoutingProfileSearchCriteria withAndConditions(RoutingProfileSearchCriteria... andConditions)
A list of conditions which would be applied together with an AND condition.
Returns a reference to this object so that method calls can be chained together.
andConditions - A list of conditions which would be applied together with an AND condition.
public RoutingProfileSearchCriteria withAndConditions(java.util.Collection<RoutingProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND condition.
Returns a reference to this object so that method calls can be chained together.
andConditions - A list of conditions which would be applied together with an AND condition.
public StringCondition getStringCondition()
A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName are
name, description, and resourceID.
A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName are
name, description, and
resourceID.
public void setStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName are
name, description, and resourceID.
stringCondition - A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName are
name, description, and
resourceID.
public RoutingProfileSearchCriteria withStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName are
name, description, and resourceID.
Returns a reference to this object so that method calls can be chained together.
stringCondition - A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName are
name, description, and
resourceID.
public java.lang.String toString()
toString in class java.lang.ObjectObject.toString()public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Object