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

fr.univnantes.termsuite.framework.Index Maven / Gradle / Ivy

package fr.univnantes.termsuite.framework;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import com.google.inject.BindingAnnotation;

import fr.univnantes.termsuite.index.TermIndexType;

@BindingAnnotation @Target({ FIELD }) @Retention(RUNTIME)
public @interface Index {
	TermIndexType type();
	boolean dropSingletons() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy