public enum TextPaneStyleTypes extends Enum<TextPaneStyleTypes>
| Enum Constant and Description |
|---|
COMMENT |
KEYWORDS |
KEYWORDS2 |
NUMBER |
OPERATORS |
STRING |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
static TextPaneStyleTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextPaneStyleTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextPaneStyleTypes KEYWORDS
public static final TextPaneStyleTypes KEYWORDS2
public static final TextPaneStyleTypes OPERATORS
public static final TextPaneStyleTypes NUMBER
public static final TextPaneStyleTypes STRING
public static final TextPaneStyleTypes COMMENT
public static final TextPaneStyleTypes TYPE
public static TextPaneStyleTypes[] values()
for (TextPaneStyleTypes c : TextPaneStyleTypes.values()) System.out.println(c);
public static TextPaneStyleTypes 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 © 2001–2015 Apache Cayenne. All rights reserved.