Package net.webpdf.wsclient.openapi
Enum OperationTextAnnotation.IconEnum
- java.lang.Object
-
- java.lang.Enum<OperationTextAnnotation.IconEnum>
-
- net.webpdf.wsclient.openapi.OperationTextAnnotation.IconEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationTextAnnotation.IconEnum>
- Enclosing class:
- OperationTextAnnotation
public static enum OperationTextAnnotation.IconEnum extends Enum<OperationTextAnnotation.IconEnum>
Used to specify the icon that should be displayed for the note on the page. The following values are available: * check = The text annotation approves the content. * checkmark = The text annotation adds a gray checkmark to the content. * circle = The text annotation is a comment on the circled content. * comment = The text annotation is a comment to the marked contents. * cross = The text annotation marks the content or crosses it out. * crossHair = The text annotation targets the content in the crosshair. * insert = The text annotation is suggesting inserting some content. * key = The text annotation marks or contains a key content/information. * note = The text annotation is a mere note concerning the marked content. * help = The text annotation provides helpful information concerning the marked content. * newParagraph = The text annotation suggests adding a new Paragraph at a specific point. * paragraph = The text annotation is concerning the whole paragraph. * rightArrow = The text annotation is concerning the content to the right. * rightPointer = The text annotation is concerning the content to the right. * star = The text annotation marks content as especially important. * upArrow = The text annotation is concerning the content at the top. * upLeftArrow = The text annotation is concerning the content at the top left. * unnamed = The text annotation shall not provide a predefined name.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKCHECKMARKCIRCLECOMMENTCROSSCROSSHAIRHELPINSERTKEYNEWPARAGRAPHNOTEPARAGRAPHRIGHTARROWRIGHTPOINTERSTARUNNAMEDUPARROWUPLEFTARROW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationTextAnnotation.IconEnumfromValue(String value)StringgetValue()StringtoString()static OperationTextAnnotation.IconEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationTextAnnotation.IconEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECK
public static final OperationTextAnnotation.IconEnum CHECK
-
CHECKMARK
public static final OperationTextAnnotation.IconEnum CHECKMARK
-
CIRCLE
public static final OperationTextAnnotation.IconEnum CIRCLE
-
COMMENT
public static final OperationTextAnnotation.IconEnum COMMENT
-
CROSS
public static final OperationTextAnnotation.IconEnum CROSS
-
CROSSHAIR
public static final OperationTextAnnotation.IconEnum CROSSHAIR
-
INSERT
public static final OperationTextAnnotation.IconEnum INSERT
-
KEY
public static final OperationTextAnnotation.IconEnum KEY
-
NOTE
public static final OperationTextAnnotation.IconEnum NOTE
-
HELP
public static final OperationTextAnnotation.IconEnum HELP
-
NEWPARAGRAPH
public static final OperationTextAnnotation.IconEnum NEWPARAGRAPH
-
PARAGRAPH
public static final OperationTextAnnotation.IconEnum PARAGRAPH
-
RIGHTARROW
public static final OperationTextAnnotation.IconEnum RIGHTARROW
-
RIGHTPOINTER
public static final OperationTextAnnotation.IconEnum RIGHTPOINTER
-
STAR
public static final OperationTextAnnotation.IconEnum STAR
-
UPARROW
public static final OperationTextAnnotation.IconEnum UPARROW
-
UPLEFTARROW
public static final OperationTextAnnotation.IconEnum UPLEFTARROW
-
UNNAMED
public static final OperationTextAnnotation.IconEnum UNNAMED
-
-
Method Detail
-
values
public static OperationTextAnnotation.IconEnum[] 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.IconEnum c : OperationTextAnnotation.IconEnum.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.IconEnum 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.IconEnum>
-
fromValue
public static OperationTextAnnotation.IconEnum fromValue(String value)
-
-