Package net.sf.jpacriteria.parameter

Examples of net.sf.jpacriteria.parameter.CollectionParameter


        this.property = property;
        this.parameter = parameter;
    }

    public InRestriction(String property, Collection collection) {
        this(property, new CollectionParameter(collection));
    }
View Full Code Here


    public InRestriction(String property, Collection collection) {
        this(property, new CollectionParameter(collection));
    }

    public InRestriction(String property, Object... values) {
        this(property, new CollectionParameter(values));
    }
View Full Code Here

        this.reference = reference;
        this.parameter = parameter;
    }

    public ReferenceInRestriction(Reference reference, Collection collection) {
        this(reference, new CollectionParameter(collection));
    }
View Full Code Here

    public ReferenceInRestriction(Reference reference, Collection collection) {
        this(reference, new CollectionParameter(collection));
    }

    public ReferenceInRestriction(Reference reference, Object... values) {
        this(reference, new CollectionParameter(values));
    }
View Full Code Here

TOP

Related Classes of net.sf.jpacriteria.parameter.CollectionParameter

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.