com.infomaximum.database.anotation.Entity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database.anotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target(TYPE)
@Retention(RUNTIME)
public @interface Entity {
String namespace();
String name();
Field[] fields();
HashIndex[] hashIndexes() default {};
PrefixIndex[] prefixIndexes() default {};
IntervalIndex[] intervalIndexes() default {};
RangeIndex[] rangeIndexes() default {};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy