com.github.davidmoten.rx.jdbc.annotations.Index Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava-jdbc Show documentation
Show all versions of rxjava-jdbc Show documentation
rx-java Observables for jdbc
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