Enum TextAnnotationIconsType
- java.lang.Object
-
- java.lang.Enum<TextAnnotationIconsType>
-
- net.webpdf.wsclient.schema.operation.TextAnnotationIconsType
-
- All Implemented Interfaces:
Serializable,Comparable<TextAnnotationIconsType>
public enum TextAnnotationIconsType extends Enum<TextAnnotationIconsType>
Java class for TextAnnotationIconsType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TextAnnotationIconsType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="check"/> <enumeration value="checkmark"/> <enumeration value="circle"/> <enumeration value="comment"/> <enumeration value="cross"/> <enumeration value="crossHair"/> <enumeration value="insert"/> <enumeration value="key"/> <enumeration value="note"/> <enumeration value="help"/> <enumeration value="newParagraph"/> <enumeration value="paragraph"/> <enumeration value="rightArrow"/> <enumeration value="rightPointer"/> <enumeration value="star"/> <enumeration value="upArrow"/> <enumeration value="upLeftArrow"/> <enumeration value="unnamed"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKCHECKMARKCIRCLECOMMENTCROSSCROSS_HAIRHELPINSERTKEYNEW_PARAGRAPHNOTEPARAGRAPHRIGHT_ARROWRIGHT_POINTERSTARUNNAMEDUP_ARROWUP_LEFT_ARROW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextAnnotationIconsTypefromValue(String v)Stringvalue()static TextAnnotationIconsTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TextAnnotationIconsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECK
public static final TextAnnotationIconsType CHECK
-
CHECKMARK
public static final TextAnnotationIconsType CHECKMARK
-
CIRCLE
public static final TextAnnotationIconsType CIRCLE
-
COMMENT
public static final TextAnnotationIconsType COMMENT
-
CROSS
public static final TextAnnotationIconsType CROSS
-
CROSS_HAIR
public static final TextAnnotationIconsType CROSS_HAIR
-
INSERT
public static final TextAnnotationIconsType INSERT
-
KEY
public static final TextAnnotationIconsType KEY
-
NOTE
public static final TextAnnotationIconsType NOTE
-
HELP
public static final TextAnnotationIconsType HELP
-
NEW_PARAGRAPH
public static final TextAnnotationIconsType NEW_PARAGRAPH
-
PARAGRAPH
public static final TextAnnotationIconsType PARAGRAPH
-
RIGHT_ARROW
public static final TextAnnotationIconsType RIGHT_ARROW
-
RIGHT_POINTER
public static final TextAnnotationIconsType RIGHT_POINTER
-
STAR
public static final TextAnnotationIconsType STAR
-
UP_ARROW
public static final TextAnnotationIconsType UP_ARROW
-
UP_LEFT_ARROW
public static final TextAnnotationIconsType UP_LEFT_ARROW
-
UNNAMED
public static final TextAnnotationIconsType UNNAMED
-
-
Method Detail
-
values
public static TextAnnotationIconsType[] 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 (TextAnnotationIconsType c : TextAnnotationIconsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextAnnotationIconsType 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
-
value
public String value()
-
fromValue
public static TextAnnotationIconsType fromValue(String v)
-
-