public static enum Heading.Level extends Enum<Heading.Level>
| Modifier and Type | Method and Description |
|---|---|
static Heading.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Heading.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Heading.Level H1
public static final Heading.Level H2
public static final Heading.Level H3
public static final Heading.Level H4
public static final Heading.Level H5
public static final Heading.Level H6
public static Heading.Level[] values()
for (Heading.Level c : Heading.Level.values()) System.out.println(c);
public static Heading.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 nameNullPointerException - if the argument is nullCopyright © 2014 dontdrinkandroot. All rights reserved.