org.mapfish.print.parser.OneOf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of print-lib Show documentation
Show all versions of print-lib Show documentation
Library for generating PDFs and images from online webmapping services
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