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

org.mapfish.print.parser.OneOf Maven / Gradle / Ivy

There is a newer version: 3.22.0
Show newest version
package org.mapfish.print.parser;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 * Indicates that the annotated field or one of the others in the same OneOf group is required.
 *
 * @see org.mapfish.print.parser.CanSatisfyOneOf
 */
@Target(value = ElementType.FIELD)
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
public @interface OneOf {
    /**
     * The choice group id.  One of the options in the choice group must be present in the parsed JSON.
     */
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy