public static enum MeterCellId.MeterCellType extends Enum<MeterCellId.MeterCellType>
| Enum Constant and Description |
|---|
INDEX
Signifies that the meter cell can be identified with an integer index.
|
PIPELINE_INDEPENDENT
Signifies that the meter cell identifier is pipeline-independent.
|
| Modifier and Type | Method and Description |
|---|---|
static MeterCellId.MeterCellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeterCellId.MeterCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeterCellId.MeterCellType INDEX
public static final MeterCellId.MeterCellType PIPELINE_INDEPENDENT
public static MeterCellId.MeterCellType[] values()
for (MeterCellId.MeterCellType c : MeterCellId.MeterCellType.values()) System.out.println(c);
public static MeterCellId.MeterCellType 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 null