public static enum Types.PifIgmpStatus extends java.lang.Enum<Types.PifIgmpStatus>
Enum Constant and Description |
---|
DISABLED
IGMP Snooping is disabled in the corresponding backend bridge.'
|
ENABLED
IGMP Snooping is enabled in the corresponding backend bridge.'
|
UNKNOWN
IGMP snooping status is unknown.
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Types.PifIgmpStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.PifIgmpStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.PifIgmpStatus UNRECOGNIZED
public static final Types.PifIgmpStatus ENABLED
public static final Types.PifIgmpStatus DISABLED
public static final Types.PifIgmpStatus UNKNOWN
public static Types.PifIgmpStatus[] values()
for (Types.PifIgmpStatus c : Types.PifIgmpStatus.values()) System.out.println(c);
public static Types.PifIgmpStatus 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Types.PifIgmpStatus>