Package com.headius.invokebinder.transform

Examples of com.headius.invokebinder.transform.Insert


     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, boolean value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here


     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, byte value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, short value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, char value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, int value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, long value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, float value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index the index at which to insert the argument value
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, double value) {
        return new Binder(this, new Insert(index, value));
    }
View Full Code Here

     * @param index  the index at which to insert the argument value
     * @param values the value(s) to insert
     * @return a new Binder
     */
    public Binder insert(int index, Object... values) {
        return new Binder(this, new Insert(index, values));
    }
View Full Code Here

     * @param type  the actual type to use, rather than getClass
     * @param value the value to insert
     * @return a new Binder
     */
    public Binder insert(int index, Class type, Object value) {
        return new Binder(this, new Insert(index, new Class[]{type}, value));
    }
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.