当前位置: 首页>>代码示例>>Java>>正文


Java EntityCondition.entityMatches方法代码示例

本文整理汇总了Java中org.ofbiz.entity.condition.EntityCondition.entityMatches方法的典型用法代码示例。如果您正苦于以下问题:Java EntityCondition.entityMatches方法的具体用法?Java EntityCondition.entityMatches怎么用?Java EntityCondition.entityMatches使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.ofbiz.entity.condition.EntityCondition的用法示例。


在下文中一共展示了EntityCondition.entityMatches方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: filterByAnd

import org.ofbiz.entity.condition.EntityCondition; //导入方法依赖的package包/类
/**
 *returns the values that match all of the exprs in list
 *
 *@param values List of GenericValues
 *@param exprs the expressions that must validate to true
 *@return List of GenericValue's that match the values in fields
 */
public static <T extends GenericEntity> List<T> filterByAnd(List<T> values, List<? extends EntityCondition> exprs) {
    if (values == null) return null;
    if (UtilValidate.isEmpty(exprs)) {
        // no constraints... oh well
        return values;
    }

    List<T> result = new LinkedList<T>();
    for (T value: values) {
        boolean include = true;

        for (EntityCondition condition: exprs) {
            include = condition.entityMatches(value);
            if (!include) break;
        }
        if (include) {
            result.add(value);
        }
    }
    return result;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:29,代码来源:EntityUtil.java

示例2: filterByOr

import org.ofbiz.entity.condition.EntityCondition; //导入方法依赖的package包/类
/**
 *returns the values that match any of the exprs in list
 *
 *@param values List of GenericValues
 *@param exprs the expressions that must validate to true
 *@return List of GenericValue's that match the values in fields
 */
public static <T extends GenericEntity> List<T> filterByOr(List<T> values, List<? extends EntityCondition> exprs) {
    if (values == null) return null;
    if (UtilValidate.isEmpty(exprs)) {
        return values;
    }

    List<T> result = new LinkedList<T>();
    for (T value: values) {
        boolean include = false;

        for (EntityCondition condition: exprs) {
            include = condition.entityMatches(value);
            if (include) break;
        }
        if (include) {
            result.add(value);
        }
    }
    return result;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:28,代码来源:EntityUtil.java

示例3: remove

import org.ofbiz.entity.condition.EntityCondition; //导入方法依赖的package包/类
public void remove(String entityName, EntityCondition condition) {
    UtilCache<GenericPK, GenericValue> entityCache = getCache(entityName);
    if (entityCache == null) return;
    for (GenericPK pk: entityCache.getCacheLineKeys()) {
        GenericValue entity = entityCache.get(pk);
        if (entity == null) continue;
        if (condition.entityMatches(entity)) entityCache.remove(pk);
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:10,代码来源:EntityCache.java

示例4: filterByCondition

import org.ofbiz.entity.condition.EntityCondition; //导入方法依赖的package包/类
public static <T extends GenericEntity> List<T> filterByCondition(List<T> values, EntityCondition condition) {
    if (values == null) return null;

    List<T> result = new LinkedList<T>();
    for (T value: values) {
        if (condition.entityMatches(value)) {
            result.add(value);
        }
    }
    return result;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:12,代码来源:EntityUtil.java

示例5: filterOutByCondition

import org.ofbiz.entity.condition.EntityCondition; //导入方法依赖的package包/类
public static <T extends GenericEntity> List<T> filterOutByCondition(List<T> values, EntityCondition condition) {
    if (values == null) return null;

    List<T> result = new LinkedList<T>();
    for (T value: values) {
        if (!condition.entityMatches(value)) {
            result.add(value);
        }
    }
    return result;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:12,代码来源:EntityUtil.java

示例6: matches

import org.ofbiz.entity.condition.EntityCondition; //导入方法依赖的package包/类
public boolean matches(EntityCondition condition) {
    return condition.entityMatches(this);
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:4,代码来源:GenericEntity.java


注:本文中的org.ofbiz.entity.condition.EntityCondition.entityMatches方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。