Enum Class Component

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

public enum Component extends Enum<Component>
Defines possible components for a given action.
  • Enum Constant Details

    • Controller

      public static final Component Controller
    • Processor

      public static final Component Processor
    • InputPort

      public static final Component InputPort
    • OutputPort

      public static final Component OutputPort
    • ProcessGroup

      public static final Component ProcessGroup
    • RemoteProcessGroup

      public static final Component RemoteProcessGroup
    • Funnel

      public static final Component Funnel
    • Connection

      public static final Component Connection
    • ControllerService

      public static final Component ControllerService
    • ReportingTask

      public static final Component ReportingTask
    • FlowAnalysisRule

      public static final Component FlowAnalysisRule
    • FlowRegistryClient

      public static final Component FlowRegistryClient
    • ParameterContext

      public static final Component ParameterContext
    • ParameterProvider

      public static final Component ParameterProvider
    • AccessPolicy

      public static final Component AccessPolicy
    • User

      public static final Component User
    • UserGroup

      public static final Component UserGroup
    • Label

      public static final Component Label
  • Method Details

    • values

      public static Component[] 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 Component 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