public enum LabeledContainerExampleType extends Enum<LabeledContainerExampleType>
| Modifier and Type | Method and Description |
|---|---|
static LabeledContainerExampleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabeledContainerExampleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabeledContainerExampleType TEXT
public static final LabeledContainerExampleType LINK
public static final LabeledContainerExampleType SECTION
public final String label
public static LabeledContainerExampleType[] values()
for (LabeledContainerExampleType c : LabeledContainerExampleType.values()) System.out.println(c);
public static LabeledContainerExampleType 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.