public static enum Mirror.MirrorColumn extends Enum<Mirror.MirrorColumn>
| Enum Constant and Description |
|---|
EXTERNALIDS |
NAME |
OUTPUTPORT |
OUTPUTVLAN |
SELECTALL |
SELECTDSTPORT |
SELECTSRCPORT |
SELECTVLAN |
STATISTICS |
| Modifier and Type | Method and Description |
|---|---|
String |
columnName()
Returns the table column name for MirrorColumn.
|
static Mirror.MirrorColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mirror.MirrorColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mirror.MirrorColumn NAME
public static final Mirror.MirrorColumn SELECTSRCPORT
public static final Mirror.MirrorColumn SELECTDSTPORT
public static final Mirror.MirrorColumn SELECTVLAN
public static final Mirror.MirrorColumn OUTPUTPORT
public static final Mirror.MirrorColumn EXTERNALIDS
public static final Mirror.MirrorColumn OUTPUTVLAN
public static final Mirror.MirrorColumn STATISTICS
public static final Mirror.MirrorColumn SELECTALL
public static Mirror.MirrorColumn[] values()
for (Mirror.MirrorColumn c : Mirror.MirrorColumn.values()) System.out.println(c);
public static Mirror.MirrorColumn 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 nullpublic String columnName()