Package org.fcrepo.server.types.gen

Examples of org.fcrepo.server.types.gen.ComparisonOperator


     * {@link org.fcrepo.server.types.mtom.gen.Condition Condition}.
     */
    public static org.fcrepo.server.types.gen.Condition convertConditionToGenCondition(Condition condition) {
        String opAbbr = condition.getOperator().getAbbreviation();

        ComparisonOperator compOperator;
        try {
            compOperator = ComparisonOperator.fromValue(opAbbr);
        } catch (IllegalArgumentException e) {
            throw new IllegalArgumentException("unrecognized comparison operator string: '"
                    + opAbbr + "'");
View Full Code Here

TOP

Related Classes of org.fcrepo.server.types.gen.ComparisonOperator

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.