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

fr.ouestfrance.querydsl.postgrest.annotations.PostgrestConfiguration Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package fr.ouestfrance.querydsl.postgrest.annotations;

import java.lang.annotation.*;

import static fr.ouestfrance.querydsl.postgrest.annotations.PostgrestConfiguration.CountType.EXACT;

/**
 * PostgresConfiguration annotation allow to create PostgrestRepository with values
 * resource : name of the path on the resource
 */
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface PostgrestConfiguration {
    /**
     * Resource name
     *
     * @return Resource name
     */
    String resource();

    /**
     * Specify the count strategy
     *
     * @return type of count strategy
     */
    CountType countStrategy() default EXACT;

    /**
     * Count Type
     */
    enum CountType {
        /**
         * Get the total size of the table
         */
        EXACT,
        /**
         * Get a fairly accurate and fast count
         */
        PLANNED,
        /**
         * Get an estimated count of the number of elements
         */
        ESTIMATED
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy