public static enum Title.Level extends Enum<Title.Level>
| Modifier and Type | Method and Description |
|---|---|
static Title.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Title.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Title.Level H1
public static final Title.Level H2
public static final Title.Level H3
public static final Title.Level H4
public static final Title.Level H5
public static final Title.Level H6
public static Title.Level[] values()
for (Title.Level c : Title.Level.values()) System.out.println(c);
public static Title.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 © 2008-2012 Ovea. All Rights Reserved.