com.github.gkutiel.flip.db.Indexs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flip-db Show documentation
Show all versions of flip-db Show documentation
A simple way to make persistence
package com.github.gkutiel.flip.db;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Indexs {
public @interface Index {
String[] value();
}
Index[] value();
}