org.ofbiz.entity.condition
Class EntityConditionList<T extends EntityCondition>

java.lang.Object
  extended by org.ofbiz.entity.condition.EntityConditionBase
      extended by org.ofbiz.entity.condition.EntityCondition
          extended by org.ofbiz.entity.condition.EntityConditionListBase<T>
              extended by org.ofbiz.entity.condition.EntityConditionList<T>
All Implemented Interfaces:
java.io.Serializable

public class EntityConditionList<T extends EntityCondition>
extends EntityConditionListBase<T>

Encapsulates a list of EntityConditions to be used as a single EntityCondition combined as specified

See Also:
Serialized Form

Field Summary
protected static  entityConditionListFactory
           
static java.lang.String module
           
 
Fields inherited from class org.ofbiz.entity.condition.EntityConditionListBase
conditionList, operator
 
Fields inherited from class org.ofbiz.entity.condition.EntityConditionBase
_emptyMap, emptyAliases, emptyList
 
Constructor Summary
protected EntityConditionList()
           
  EntityConditionList(EntityJoinOperator operator, T... conditionList)
          Deprecated. Use EntityCondition.makeCondition() instead
  EntityConditionList(java.util.List<T> conditionList, EntityJoinOperator operator)
          Deprecated. Use EntityCondition.makeCondition() instead
 
Method Summary
 void accept(EntityConditionVisitor visitor)
           
 java.util.Iterator<T> getConditionIterator()
           
 int getConditionListSize()
           
 
Methods inherited from class org.ofbiz.entity.condition.EntityConditionListBase
checkCondition, encryptConditionFields, equals, freeze, getCondition, getOperator, hashCode, init, init, makeWhereString, mapMatches, reset, visit
 
Methods inherited from class org.ofbiz.entity.condition.EntityCondition
entityMatches, eval, eval, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeCondition, makeConditionDate, makeConditionMap, makeConditionWhere, toString
 
Methods inherited from class org.ofbiz.entity.condition.EntityConditionBase
addValue, castBoolean, equals, getColName, getColName, getColName, getField, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

module

public static final java.lang.String module

entityConditionListFactory

protected static final  entityConditionListFactory
Constructor Detail

EntityConditionList

protected EntityConditionList()

EntityConditionList

public EntityConditionList(EntityJoinOperator operator,
                           T... conditionList)
Deprecated. Use EntityCondition.makeCondition() instead


EntityConditionList

public EntityConditionList(java.util.List<T> conditionList,
                           EntityJoinOperator operator)
Deprecated. Use EntityCondition.makeCondition() instead

Method Detail

getConditionListSize

public int getConditionListSize()
Overrides:
getConditionListSize in class EntityConditionListBase<T extends EntityCondition>

getConditionIterator

public java.util.Iterator<T> getConditionIterator()
Overrides:
getConditionIterator in class EntityConditionListBase<T extends EntityCondition>

accept

public void accept(EntityConditionVisitor visitor)
Overrides:
accept in class EntityCondition