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

com.github.jingshouyan.jdbc.comm.annotaion.Index Maven / Gradle / Ivy

package com.github.jingshouyan.jdbc.comm.annotaion;


import java.lang.annotation.*;

@Target({ElementType.TYPE, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(Indices.class)
@Documented
public @interface Index {
    String[] value() default {};

    boolean unique() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy