public enum FormattingOption extends Enum<FormattingOption>
| Enum Constant and Description |
|---|
CLASS_PLUS_OTHER |
CLASS_TO_STYLE_ONLY |
IGNORE_CLASS |
| Modifier and Type | Method and Description |
|---|---|
static FormattingOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormattingOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormattingOption CLASS_TO_STYLE_ONLY
public static final FormattingOption CLASS_PLUS_OTHER
public static final FormattingOption IGNORE_CLASS
public static FormattingOption[] values()
for (FormattingOption c : FormattingOption.values()) System.out.println(c);
public static FormattingOption 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 © 2007-2022. All Rights Reserved.