public static enum Netflow.NetflowColumn extends Enum<Netflow.NetflowColumn>
| Enum Constant and Description |
|---|
ACTIVETIMEOUT |
ADDIDTOINTERFACE |
ENGINEID |
ENGINETYPE |
EXTERNALIDS |
TARGETS |
| Modifier and Type | Method and Description |
|---|---|
String |
columnName()
Returns the table column name for NetflowColumn.
|
static Netflow.NetflowColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Netflow.NetflowColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Netflow.NetflowColumn TARGETS
public static final Netflow.NetflowColumn ACTIVETIMEOUT
public static final Netflow.NetflowColumn ENGINETYPE
public static final Netflow.NetflowColumn EXTERNALIDS
public static final Netflow.NetflowColumn ADDIDTOINTERFACE
public static final Netflow.NetflowColumn ENGINEID
public static Netflow.NetflowColumn[] values()
for (Netflow.NetflowColumn c : Netflow.NetflowColumn.values()) System.out.println(c);
public static Netflow.NetflowColumn 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()