public enum HighlighterTargetArea extends java.lang.Enum<HighlighterTargetArea>
Enum Constant and Description |
---|
EXACT_RANGE |
LINES_IN_RANGE |
Modifier and Type | Method and Description |
---|---|
static HighlighterTargetArea |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HighlighterTargetArea[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HighlighterTargetArea EXACT_RANGE
public static final HighlighterTargetArea LINES_IN_RANGE
public static HighlighterTargetArea[] values()
for (HighlighterTargetArea c : HighlighterTargetArea.values()) System.out.println(c);
public static HighlighterTargetArea valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null