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

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

There is a newer version: 5.1.0
Show 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 JCompositeIndex}.
 *
 * @see JCompositeIndex
 * @see Repeating Annotations
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.ANNOTATION_TYPE, ElementType.TYPE })
@Documented
public @interface JCompositeIndexes {
    JCompositeIndex[] value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy