Package com.headius.invokebinder.transform

Examples of com.headius.invokebinder.transform.Insert


     * @param types  the actual types to use, rather than getClass
     * @param values the value(s) to append
     * @return a new Binder
     */
    public Binder append(Class[] types, Object... values) {
        return new Binder(this, new Insert(type().parameterCount(), types, values));
    }
View Full Code Here


     * @param type  the actual type to use, rather than getClass
     * @param value the value(s) to prepend
     * @return a new Binder
     */
    public Binder prepend(Class type, Object value) {
        return new Binder(this, new Insert(0, new Class[]{type}, value));
    }
View Full Code Here

     * @param types  the actual types to use, rather than getClass
     * @param values the value(s) to prepend
     * @return a new Binder
     */
    public Binder prepend(Class[] types, Object... values) {
        return new Binder(this, new Insert(0, types, values));
    }
View Full Code Here

TOP

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

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.