Enum OpenshiftOperatorEnum

java.lang.Object
java.lang.Enum<OpenshiftOperatorEnum>
io.debezium.testing.system.tools.operatorutil.OpenshiftOperatorEnum
All Implemented Interfaces:
Serializable, Comparable<OpenshiftOperatorEnum>

public enum OpenshiftOperatorEnum extends Enum<OpenshiftOperatorEnum>
Constants for Apicurio and Strimzi operators
  • Enum Constant Details

  • Field Details

    • name

      private final String name
      Human name for usage in logging and prints
    • deploymentNamePrefix

      private final String deploymentNamePrefix
      Name for identifying operator deployment
    • subscriptionUpdateChannel

      private final String subscriptionUpdateChannel
      Update channel to by used in subscription
    • operatorGroupName

      private final String operatorGroupName
      Name of operator group to install operator in
  • Constructor Details

    • OpenshiftOperatorEnum

      private OpenshiftOperatorEnum(String name, String deploymentName, String channel, String operatorGroupName)
  • Method Details

    • values

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

      public static OpenshiftOperatorEnum 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 name
      NullPointerException - if the argument is null
    • getName

      public String getName()
    • getDeploymentNamePrefix

      public String getDeploymentNamePrefix()
    • getOperatorGroupName

      public String getOperatorGroupName()
    • getSubscriptionUpdateChannel

      public String getSubscriptionUpdateChannel()