com.github.davidmoten.rx.jdbc.annotations.Column 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
The 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 Column {
public static final String NOT_SPECIFIED = "*COLUMN_NOT_SPECIFIED*";
String value() default NOT_SPECIFIED;
}