Enum AclServiceManager.MatchCriteria
- java.lang.Object
-
- java.lang.Enum<AclServiceManager.MatchCriteria>
-
- org.opendaylight.netvirt.aclservice.api.AclServiceManager.MatchCriteria
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AclServiceManager.MatchCriteria>
- Enclosing interface:
- AclServiceManager
public static enum AclServiceManager.MatchCriteria extends java.lang.Enum<AclServiceManager.MatchCriteria>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MATCH_DESTINATION
MATCH_SOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AclServiceManager.MatchCriteria
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AclServiceManager.MatchCriteria[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MATCH_SOURCE
public static final AclServiceManager.MatchCriteria MATCH_SOURCE
-
MATCH_DESTINATION
public static final AclServiceManager.MatchCriteria MATCH_DESTINATION
-
-
Method Detail
-
values
public static AclServiceManager.MatchCriteria[] 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 (AclServiceManager.MatchCriteria c : AclServiceManager.MatchCriteria.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AclServiceManager.MatchCriteria 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
-
-