Package org.onosproject.net
Enum PipelineTraceableOutput.PipelineTraceableResult
- java.lang.Object
-
- java.lang.Enum<PipelineTraceableOutput.PipelineTraceableResult>
-
- org.onosproject.net.PipelineTraceableOutput.PipelineTraceableResult
-
- All Implemented Interfaces:
Serializable
,Comparable<PipelineTraceableOutput.PipelineTraceableResult>
- Enclosing class:
- PipelineTraceableOutput
public static enum PipelineTraceableOutput.PipelineTraceableResult extends Enum<PipelineTraceableOutput.PipelineTraceableResult>
Represents the result of the pipeline traceable processing.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DROPPED
Means packet is dropped by the pipeline.NO_FLOWS
Means packet stopped due to missing flows.NO_GROUP_MEMBERS
Means packet stopped due to an empty group.NO_GROUPS
Means packet stopped due to missing groups.SUCCESS
Means packet went through the pipeline.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipelineTraceableOutput.PipelineTraceableResult
valueOf(String name)
Returns the enum constant of this type with the specified name.static PipelineTraceableOutput.PipelineTraceableResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final PipelineTraceableOutput.PipelineTraceableResult SUCCESS
Means packet went through the pipeline.
-
NO_FLOWS
public static final PipelineTraceableOutput.PipelineTraceableResult NO_FLOWS
Means packet stopped due to missing flows.
-
NO_GROUPS
public static final PipelineTraceableOutput.PipelineTraceableResult NO_GROUPS
Means packet stopped due to missing groups.
-
NO_GROUP_MEMBERS
public static final PipelineTraceableOutput.PipelineTraceableResult NO_GROUP_MEMBERS
Means packet stopped due to an empty group.
-
DROPPED
public static final PipelineTraceableOutput.PipelineTraceableResult DROPPED
Means packet is dropped by the pipeline.
-
-
Method Detail
-
values
public static PipelineTraceableOutput.PipelineTraceableResult[] 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 (PipelineTraceableOutput.PipelineTraceableResult c : PipelineTraceableOutput.PipelineTraceableResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PipelineTraceableOutput.PipelineTraceableResult 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 nameNullPointerException
- if the argument is null
-
-