public enum AceMarkerType extends Enum<AceMarkerType>
| Enum Constant and Description |
|---|
FULL_LINE
Highlights the whole line.
|
SCREEN_LINE
Highlights the whole screen line.
|
TEXT
Highlights only the range.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static AceMarkerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AceMarkerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AceMarkerType FULL_LINE
public static final AceMarkerType SCREEN_LINE
public static final AceMarkerType TEXT
public static AceMarkerType[] values()
for (AceMarkerType c : AceMarkerType.values()) System.out.println(c);
public static AceMarkerType 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 nullpublic String getName()
Copyright © 2020. All Rights Reserved.