io.permazen.annotation.PermazenCompositeIndexes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-main Show documentation
Show all versions of permazen-main Show documentation
Permazen classes that map Java model classes onto the core API.
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