Enum PipelineTraceableOutput.PipelineTraceableResult

    • 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 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​(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 name
        java.lang.NullPointerException - if the argument is null