Enum CounterUtility
- java.lang.Object
-
- java.lang.Enum<CounterUtility>
-
- org.opendaylight.netvirt.vpnmanager.utilities.CounterUtility
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CounterUtility>
public enum CounterUtility extends java.lang.Enum<CounterUtility>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description subnet_route_packet_arp_sent
subnet_route_packet_drop
subnet_route_packet_failed
subnet_route_packet_ignored
subnet_route_packet_ns_sent
subnet_route_packet_processed
subnet_route_packet_recived
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.String
getModule()
static java.lang.String
getProject()
static java.lang.String
getSubnetRouteId()
static java.lang.String
getSubnetRouteInvalidPacket()
java.lang.String
toString()
static CounterUtility
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CounterUtility[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
subnet_route_packet_ignored
public static final CounterUtility subnet_route_packet_ignored
-
subnet_route_packet_failed
public static final CounterUtility subnet_route_packet_failed
-
subnet_route_packet_arp_sent
public static final CounterUtility subnet_route_packet_arp_sent
-
subnet_route_packet_ns_sent
public static final CounterUtility subnet_route_packet_ns_sent
-
subnet_route_packet_recived
public static final CounterUtility subnet_route_packet_recived
-
subnet_route_packet_drop
public static final CounterUtility subnet_route_packet_drop
-
subnet_route_packet_processed
public static final CounterUtility subnet_route_packet_processed
-
-
Method Detail
-
values
public static CounterUtility[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CounterUtility c : CounterUtility.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CounterUtility valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getSubnetRouteInvalidPacket
public static java.lang.String getSubnetRouteInvalidPacket()
-
getProject
public static java.lang.String getProject()
-
getModule
public static java.lang.String getModule()
-
getSubnetRouteId
public static java.lang.String getSubnetRouteId()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<CounterUtility>
-
-