public enum ThemeHref extends Enum<ThemeHref>
| Enum Constant and Description |
|---|
feeling_blue |
flattop |
material |
monokai |
muted |
newspaper |
original |
outline |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ThemeHref |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThemeHref[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThemeHref original
public static final ThemeHref feeling_blue
public static final ThemeHref flattop
public static final ThemeHref material
public static final ThemeHref monokai
public static final ThemeHref muted
public static final ThemeHref newspaper
public static final ThemeHref outline
public static ThemeHref[] values()
for (ThemeHref c : ThemeHref.values()) System.out.println(c);
public static ThemeHref 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 © 2018–2020. All rights reserved.