Enum Class AwsSignerType

java.lang.Object
java.lang.Enum<AwsSignerType>
org.apache.nifi.processors.aws.signer.AwsSignerType
All Implemented Interfaces:
Serializable, Comparable<AwsSignerType>, Constable, DescribedValue

public enum AwsSignerType extends Enum<AwsSignerType> implements DescribedValue
  • Enum Constant Details

    • DEFAULT_SIGNER

      public static final AwsSignerType DEFAULT_SIGNER
    • AWS_V4_SIGNER

      public static final AwsSignerType AWS_V4_SIGNER
    • AWS_S3_V4_SIGNER

      public static final AwsSignerType AWS_S3_V4_SIGNER
    • AWS_S3_V2_SIGNER

      public static final AwsSignerType AWS_S3_V2_SIGNER
    • CUSTOM_SIGNER

      public static final AwsSignerType CUSTOM_SIGNER
  • Field Details

    • LOOKUP_MAP

      private static final Map<String,AwsSignerType> LOOKUP_MAP
    • value

      private final String value
    • displayName

      private final String displayName
    • description

      private final String description
  • Constructor Details

    • AwsSignerType

      private AwsSignerType(String value, String displayName)
    • AwsSignerType

      private AwsSignerType(String value, String displayName, String description)
  • Method Details

    • values

      public static AwsSignerType[] 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 AwsSignerType 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
    • getValue

      public String getValue()
      Specified by:
      getValue in interface DescribedValue
    • getDisplayName

      public String getDisplayName()
      Specified by:
      getDisplayName in interface DescribedValue
    • getDescription

      public String getDescription()
      Specified by:
      getDescription in interface DescribedValue
    • forValue

      public static AwsSignerType forValue(String value)