Enum Class UiExtensionType

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

public enum UiExtensionType extends Enum<UiExtensionType>
Types of UI extensions. Since a UI extension could support multiple types of custom UIs it will need to include the type so the framework can appropriate understand and process the request (recording actions in the audit database, replicating a request throughout the cluster to the appropriate endpoints, etc).
  • Enum Constant Details

    • ContentViewer

      public static final UiExtensionType ContentViewer
    • ProcessorConfiguration

      public static final UiExtensionType ProcessorConfiguration
    • ControllerServiceConfiguration

      public static final UiExtensionType ControllerServiceConfiguration
    • ReportingTaskConfiguration

      public static final UiExtensionType ReportingTaskConfiguration
    • ParameterProviderConfiguration

      public static final UiExtensionType ParameterProviderConfiguration
    • FlowRegistryClientConfiguration

      public static final UiExtensionType FlowRegistryClientConfiguration
  • Constructor Details

    • UiExtensionType

      private UiExtensionType()
  • Method Details

    • values

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