Package com.headius.invokebinder.transform

Examples of com.headius.invokebinder.transform.Collect


     * @param index the index from which to start boxing args
     * @param type  the array type into which the args will be boxed
     * @return a new Binder
     */
    public Binder collect(int index, Class type) {
        return new Binder(this, new Collect(type(), index, type));
    }
View Full Code Here


     * @param count the count of arguments to box
     * @param type  the array type into which the args will be boxed
     * @return a new Binder
     */
    public Binder collect(int index, int count, Class type) {
        return new Binder(this, new Collect(type(), index, count, type));
    }
View Full Code Here

TOP

Related Classes of com.headius.invokebinder.transform.Collect

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.