Enum MatchPath
- java.lang.Object
- 
- java.lang.Enum<MatchPath>
- 
- org.opendaylight.openflowplugin.extension.api.path.MatchPath
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<MatchPath>,- AugmentationPath
 
 public enum MatchPath extends Enum<MatchPath> implements AugmentationPath Enumerates the match paths.- Author:
- msunal
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FLOWS_STATISTICS_RPC_MATCHopenflowplugin-extension-general.yang.FLOWS_STATISTICS_UPDATE_MATCHopenflowplugin-extension-general.yang.PACKET_IN_MESSAGE_MATCHopenflowplugin-extension-general.yang.PACKET_RECEIVED_MATCHopenflowplugin-extension-general.yang.SWITCH_FLOW_REMOVED_MATCHopenflowplugin-extension-general.yang.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Extension>getInstanceIdentifier()static MatchPathvalueOf(String name)Returns the enum constant of this type with the specified name.static MatchPath[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SWITCH_FLOW_REMOVED_MATCHpublic static final MatchPath SWITCH_FLOW_REMOVED_MATCH openflowplugin-extension-general.yang.module: sal-flow notifications: +---n switch-flow-removed | +--ro match
 - 
PACKET_RECEIVED_MATCHpublic static final MatchPath PACKET_RECEIVED_MATCH openflowplugin-extension-general.yang.module: packet-processing notifications: +---n packet-received +--ro match
 - 
PACKET_IN_MESSAGE_MATCHpublic static final MatchPath PACKET_IN_MESSAGE_MATCH openflowplugin-extension-general.yang.module: packet-processing container: +---n packet-in-message +--ro match
 - 
FLOWS_STATISTICS_UPDATE_MATCHpublic static final MatchPath FLOWS_STATISTICS_UPDATE_MATCH openflowplugin-extension-general.yang.module: opendaylight-flow-statistics notifications: +---n flows-statistics-update | +--ro flow-and-statistics-map-list* [flow-id] | | +--ro match
 - 
FLOWS_STATISTICS_RPC_MATCHpublic static final MatchPath FLOWS_STATISTICS_RPC_MATCH openflowplugin-extension-general.yang.module: opendaylight-direct-statistics rpc: +---n get-flow-statistics | +--ro flow-and-statistics-map-list* [flow-id] | | +--ro match
 
- 
 - 
Method Detail- 
valuespublic static MatchPath[] 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 (MatchPath c : MatchPath.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MatchPath valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getInstanceIdentifierpublic final org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Extension> getInstanceIdentifier() - Specified by:
- getInstanceIdentifierin interface- AugmentationPath
 
 
- 
 
-