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