All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.davidmoten.rx.jdbc.annotations.Index Maven / Gradle / Ivy

There is a newer version: 0.7.19
Show newest version
package com.github.davidmoten.rx.jdbc.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;

@Target({ METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface Index {
    /**
     * 1 based index corresponding the index in a
     * ResultSet.getObject(index) call.
     * 
     * @return the 1 based index that the annotated method corresponds to in the
     *         ResultSet
     */
    int value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy