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