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