public enum Category extends Enum<Category>
| Enum Constant and Description |
|---|
collections |
conversion |
datetime |
diagnostics |
distributions |
general |
premade |
state |
| Modifier and Type | Method and Description |
|---|---|
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category datetime
public static final Category state
public static final Category distributions
public static final Category diagnostics
public static final Category conversion
public static final Category collections
public static final Category premade
public static final Category general
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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.