Package net.webpdf.wsclient.openapi
Enum OperationRubberStampAnnotation.AppearanceGenerationEnum
- java.lang.Object
-
- java.lang.Enum<OperationRubberStampAnnotation.AppearanceGenerationEnum>
-
- net.webpdf.wsclient.openapi.OperationRubberStampAnnotation.AppearanceGenerationEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationRubberStampAnnotation.AppearanceGenerationEnum>
- Enclosing class:
- OperationRubberStampAnnotation
public static enum OperationRubberStampAnnotation.AppearanceGenerationEnum extends Enum<OperationRubberStampAnnotation.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 OperationRubberStampAnnotation.AppearanceGenerationEnumfromValue(String value)StringgetValue()StringtoString()static OperationRubberStampAnnotation.AppearanceGenerationEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationRubberStampAnnotation.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 OperationRubberStampAnnotation.AppearanceGenerationEnum ALWAYS
-
NEVER
public static final OperationRubberStampAnnotation.AppearanceGenerationEnum NEVER
-
NONSTANDARD
public static final OperationRubberStampAnnotation.AppearanceGenerationEnum NONSTANDARD
-
-
Method Detail
-
values
public static OperationRubberStampAnnotation.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 (OperationRubberStampAnnotation.AppearanceGenerationEnum c : OperationRubberStampAnnotation.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 OperationRubberStampAnnotation.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<OperationRubberStampAnnotation.AppearanceGenerationEnum>
-
fromValue
public static OperationRubberStampAnnotation.AppearanceGenerationEnum fromValue(String value)
-
-