Enum Class ComponentType

java.lang.Object
java.lang.Enum<ComponentType>
org.apache.nifi.flow.ComponentType
All Implemented Interfaces:
Serializable, Comparable<ComponentType>, Constable

public enum ComponentType extends Enum<ComponentType>
  • Enum Constant Details

    • CONNECTION

      public static final ComponentType CONNECTION
    • PROCESSOR

      public static final ComponentType PROCESSOR
    • PROCESS_GROUP

      public static final ComponentType PROCESS_GROUP
    • REMOTE_PROCESS_GROUP

      public static final ComponentType REMOTE_PROCESS_GROUP
    • INPUT_PORT

      public static final ComponentType INPUT_PORT
    • OUTPUT_PORT

      public static final ComponentType OUTPUT_PORT
    • REMOTE_INPUT_PORT

      public static final ComponentType REMOTE_INPUT_PORT
    • REMOTE_OUTPUT_PORT

      public static final ComponentType REMOTE_OUTPUT_PORT
    • FUNNEL

      public static final ComponentType FUNNEL
    • LABEL

      public static final ComponentType LABEL
    • CONTROLLER_SERVICE

      public static final ComponentType CONTROLLER_SERVICE
    • REPORTING_TASK

      public static final ComponentType REPORTING_TASK
    • FLOW_ANALYSIS_RULE

      public static final ComponentType FLOW_ANALYSIS_RULE
    • PARAMETER_CONTEXT

      public static final ComponentType PARAMETER_CONTEXT
    • PARAMETER_PROVIDER

      public static final ComponentType PARAMETER_PROVIDER
    • FLOW_REGISTRY_CLIENT

      public static final ComponentType FLOW_REGISTRY_CLIENT
  • Method Details

    • values

      public static ComponentType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ComponentType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getTypeName

      public String getTypeName()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ComponentType>