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 insert
     * @return a new Binder
     */
    public Binder insert(int index, Class[] types, Object... values) {
        return new Binder(this, new Insert(index, types, values));
    }
View Full Code Here


     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(boolean value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(byte value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(short value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(char value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(int value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(long value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(float value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param value the value to append
     * @return a new Binder
     */
    public Binder append(double value) {
        return new Binder(this, new Insert(type().parameterCount(), value));
    }
View Full Code Here

     *
     * @param values the value(s) to append
     * @return a new Binder
     */
    public Binder append(Object... values) {
        return new Binder(this, new Insert(type().parameterCount(), 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.