public static enum Band.Type extends Enum<Band.Type>
| Enum Constant and Description | 
|---|
DROP
Simple rate limiter which drops packets
 when the rate is exceeded. 
 | 
EXPERIMENTAL
Defines an experimental meter band. 
 | 
NONE
Defines a meter band with no action, used to mark
 packets internally in the pipeline, i.e. 
 | 
REMARK
Defines a simple DiffServ policer that remark
 the drop precedence of the DSCP field in the
 IP header of the packets that exceed the band
 rate value. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Band.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Band.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Band.Type DROP
public static final Band.Type REMARK
public static final Band.Type EXPERIMENTAL
public static final Band.Type NONE
public static Band.Type[] values()
for (Band.Type c : Band.Type.values()) System.out.println(c);
public static Band.Type 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