public enum ChangeItemCategory extends Enum<ChangeItemCategory>
| Enum Constant and Description |
|---|
ADAPTIVE |
CORRECTIVE |
OTHER |
PERFECTIVE |
PREVENTIVE |
| Modifier and Type | Method and Description |
|---|---|
static ChangeItemCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeItemCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeItemCategory ADAPTIVE
public static final ChangeItemCategory CORRECTIVE
public static final ChangeItemCategory PERFECTIVE
public static final ChangeItemCategory PREVENTIVE
public static final ChangeItemCategory OTHER
public static ChangeItemCategory[] values()
for (ChangeItemCategory c : ChangeItemCategory.values()) System.out.println(c);
public static ChangeItemCategory 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 © 2017 DocDoku. All rights reserved.