public enum NumberingStyle extends Enum<NumberingStyle> implements FriendlyNamed
| Modifier and Type | Method and Description |
|---|---|
String |
getFriendlyName() |
abstract String |
toStyledString(int number) |
static NumberingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberingStyle ARABIC
public static final NumberingStyle EMPTY
public static final NumberingStyle ROMAN
public static NumberingStyle[] values()
for (NumberingStyle c : NumberingStyle.values()) System.out.println(c);
public static NumberingStyle 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 nullpublic String getFriendlyName()
getFriendlyName in interface FriendlyNamedpublic abstract String toStyledString(int number)
number - Copyright © 2015. All Rights Reserved.