public interface EntityCondition extends java.io.Externalizable
Represents the conditions to be used to constrain a query. These can be used in various combinations using the different condition types. This class is mostly empty because it is a placeholder for use in the EntityConditionFactory and most functionality is internal only.
Modifiers | Name | Description |
---|---|---|
enum |
EntityCondition.ComparisonOperator |
|
enum |
EntityCondition.JoinOperator |
Type Params | Return Type | Name and description |
---|---|---|
|
public EntityCondition |
ignoreCase() Set this condition to ignore case in the query. |
|
public boolean |
mapKeysNotContained(java.util.Map<java.lang.String, java.lang.Object> map) Used for EntityCache view-entity clearing by member-entity change |
|
public boolean |
mapMatches(java.util.Map<java.lang.String, java.lang.Object> map) Evaluate the condition in memory. |
|
public boolean |
mapMatchesAny(java.util.Map<java.lang.String, java.lang.Object> map) Used for EntityCache view-entity clearing by member-entity change |
|
public boolean |
populateMap(java.util.Map<java.lang.String, java.lang.Object> map) Create a map of name/value pairs representing the condition. |
Methods inherited from class | Name |
---|---|
interface java.io.Externalizable |
java.io.Externalizable#writeExternal(java.io.ObjectOutput), java.io.Externalizable#readExternal(java.io.ObjectInput) |
Set this condition to ignore case in the query. This may not have an effect for all types of conditions.
Used for EntityCache view-entity clearing by member-entity change
Evaluate the condition in memory.
Used for EntityCache view-entity clearing by member-entity change
Create a map of name/value pairs representing the condition. Returns false if the condition can't be represented as simple name/value pairs ANDed together.