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