/**
*
*/
package meetup.beeno;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author garyh
*
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@Inherited
public @interface HIndex {
String date_col() default "";
boolean date_invert() default false;
String[] extra_cols() default {};
Class<? extends IndexKeyFactory> key_factory() default EntityIndexer.DefaultKeyFactory.class;
}