public enum AnnotationType extends Enum<AnnotationType>
Enum Constant and Description |
---|
ARROW
Arrow
|
CIRCLE
Circle
|
FREE_DRAWING
Free drawing
|
HIGHLIGHT
Highlight
|
INLINE_TEXT_COMMENT
Inline text comment
|
LINE
Line
|
SQUARE
Square
|
STRIKEOUT
Strikeout
|
TEXT_COMMENT
Text comment
|
UNDERLINE
Underline
|
Modifier and Type | Method and Description |
---|---|
static AnnotationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationType ARROW
public static final AnnotationType TEXT_COMMENT
public static final AnnotationType INLINE_TEXT_COMMENT
public static final AnnotationType STRIKEOUT
public static final AnnotationType UNDERLINE
public static final AnnotationType HIGHLIGHT
public static final AnnotationType FREE_DRAWING
public static final AnnotationType LINE
public static final AnnotationType CIRCLE
public static final AnnotationType SQUARE
public static AnnotationType[] values()
for (AnnotationType c : AnnotationType.values()) System.out.println(c);
public static AnnotationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.