Package org.candlepin.model.Statistic

Examples of org.candlepin.model.Statistic.ValueType


        }
    }

    private void generateValueTypeFilter(Criteria c, String vType) {
        if (vType != null && !vType.trim().equals("")) {
            ValueType type = VTYPES.get(vType);
            c.add(Restrictions.eq("valueType", type));
        }
    }
View Full Code Here

TOP

Related Classes of org.candlepin.model.Statistic.ValueType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.