public enum LagState extends Enum<LagState>
Enum Constant and Description |
---|
Aggregation |
Collecting |
Defaulted |
Distributing |
Expired |
LacpActivity |
LacpTimeout |
Synchronization |
Unknown |
Modifier and Type | Method and Description |
---|---|
static LagState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LagState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LagState Aggregation
public static final LagState Collecting
public static final LagState Defaulted
public static final LagState Distributing
public static final LagState Expired
public static final LagState LacpActivity
public static final LagState LacpTimeout
public static final LagState Synchronization
public static final LagState Unknown
public static LagState[] values()
for (LagState c : LagState.values()) System.out.println(c);
public static LagState 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.