@Beta public enum PiEntityType extends java.lang.Enum<PiEntityType>
| Enum Constant and Description |
|---|
GROUP
Action profile group.
|
TABLE_ENTRY
Table entry.
|
| Modifier and Type | Method and Description |
|---|---|
static PiEntityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PiEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PiEntityType TABLE_ENTRY
public static final PiEntityType GROUP
public static PiEntityType[] values()
for (PiEntityType c : PiEntityType.values()) System.out.println(c);
public static PiEntityType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null