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

com.infomaximum.database.anotation.RangeIndex Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database.anotation;

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

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

@Target({})
@Retention(RUNTIME)
public @interface RangeIndex {

    /**
     * Supported Long, Instant and Double types only.
     */
    int beginField();
    int endField();

    int[] hashedFields() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy