Package net.webpdf.wsclient.openapi
Enum OperationTextAnnotation.AppearanceGenerationEnum
- java.lang.Object
-
- java.lang.Enum<OperationTextAnnotation.AppearanceGenerationEnum>
-
- net.webpdf.wsclient.openapi.OperationTextAnnotation.AppearanceGenerationEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationTextAnnotation.AppearanceGenerationEnum>
- Enclosing class:
- OperationTextAnnotation
public static enum OperationTextAnnotation.AppearanceGenerationEnum extends Enum<OperationTextAnnotation.AppearanceGenerationEnum>
Determines for which named annotations appearance streams shall be generated. **Important:** Per definition some named annotations are defined as standard names and PDF readers shall provide the means to draw those. * always = An appearance stream shall be prepared for all created named annotations. * never = Don't provide appearance streams and rely on PDF readers to dynamically generate a proper representation of named annotations. * nonStandard = Only provide appearance streams for non-standard annotations.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYSNEVERNONSTANDARD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationTextAnnotation.AppearanceGenerationEnumfromValue(String value)StringgetValue()StringtoString()static OperationTextAnnotation.AppearanceGenerationEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationTextAnnotation.AppearanceGenerationEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS
public static final OperationTextAnnotation.AppearanceGenerationEnum ALWAYS
-
NEVER
public static final OperationTextAnnotation.AppearanceGenerationEnum NEVER
-
NONSTANDARD
public static final OperationTextAnnotation.AppearanceGenerationEnum NONSTANDARD
-
-
Method Detail
-
values
public static OperationTextAnnotation.AppearanceGenerationEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperationTextAnnotation.AppearanceGenerationEnum c : OperationTextAnnotation.AppearanceGenerationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationTextAnnotation.AppearanceGenerationEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationTextAnnotation.AppearanceGenerationEnum>
-
fromValue
public static OperationTextAnnotation.AppearanceGenerationEnum fromValue(String value)
-
-