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

io.permazen.annotation.PermazenCompositeIndexes Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package io.permazen.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Container for the {@link java.lang.annotation.Repeatable @Repeatable} annotation {@link PermazenCompositeIndex}.
 *
 * @see PermazenCompositeIndex
 * @see Repeating Annotations
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.ANNOTATION_TYPE, ElementType.TYPE })
@Documented
public @interface PermazenCompositeIndexes {
    PermazenCompositeIndex[] value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy