public static enum CategoryProfile.Type extends Enum<CategoryProfile.Type>
| Modifier and Type | Method and Description |
|---|---|
static CategoryProfile.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CategoryProfile.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryProfile.Type CENTRAL
public static final CategoryProfile.Type BOUNDING
public static CategoryProfile.Type[] values()
for (CategoryProfile.Type c : CategoryProfile.Type.values()) System.out.println(c);
public static CategoryProfile.Type 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 © 2013–2021 Sébastien Bigaret, Patrick Meyer. All rights reserved.