Enum Class Key

java.lang.Object
java.lang.Enum<Key>
io.mangoo.enums.Key
All Implemented Interfaces:
Serializable, Comparable<Key>, Constable

public enum Key extends Enum<Key>
Key strings for reading configuration properties of application
Author:
svenkubiak
  • Enum Constant Details

    • APPLICATION_ADMIN_ENABLE

      public static final Key APPLICATION_ADMIN_ENABLE
    • APPLICATION_ADMIN_HEALTH_ENABLE

      public static final Key APPLICATION_ADMIN_HEALTH_ENABLE
    • APPLICATION_ADMIN_HEALTH_TOKEN

      public static final Key APPLICATION_ADMIN_HEALTH_TOKEN
    • APPLICATION_ADMIN_PASSWORD

      public static final Key APPLICATION_ADMIN_PASSWORD
    • APPLICATION_ADMIN_SECRET

      public static final Key APPLICATION_ADMIN_SECRET
    • APPLICATION_ADMIN_USERNAME

      public static final Key APPLICATION_ADMIN_USERNAME
    • APPLICATION_CONFIG

      public static final Key APPLICATION_CONFIG
    • APPLICATION_CONTROLLER

      public static final Key APPLICATION_CONTROLLER
    • APPLICATION_LANGUAGE

      public static final Key APPLICATION_LANGUAGE
    • APPLICATION_MODE

      public static final Key APPLICATION_MODE
    • APPLICATION_NAME

      public static final Key APPLICATION_NAME
    • APPLICATION_PRIVATEKEY

      public static final Key APPLICATION_PRIVATEKEY
    • APPLICATION_PUBLICKEY

      public static final Key APPLICATION_PUBLICKEY
    • APPLICATION_SECRET

      public static final Key APPLICATION_SECRET
    • APPLICATION_TEMPLATEENGINE

      public static final Key APPLICATION_TEMPLATEENGINE
    • APPLICATION_THREADPOOL

      public static final Key APPLICATION_THREADPOOL
    • AUTHENTICATION_LOCK

      public static final Key AUTHENTICATION_LOCK
    • AUTHENTICATION_REDIRECT

      public static final Key AUTHENTICATION_REDIRECT
    • CACHE_CLUSTER_ENABLE

      public static final Key CACHE_CLUSTER_ENABLE
    • CACHE_CLUSTER_URL

      public static final Key CACHE_CLUSTER_URL
    • CONNECTOR_AJP_HOST

      public static final Key CONNECTOR_AJP_HOST
    • CONNECTOR_AJP_PORT

      public static final Key CONNECTOR_AJP_PORT
    • CONNECTOR_HTTP_HOST

      public static final Key CONNECTOR_HTTP_HOST
    • CONNECTOR_HTTP_PORT

      public static final Key CONNECTOR_HTTP_PORT
    • CORS_ALLOWORIGIN

      public static final Key CORS_ALLOWORIGIN
    • CORS_ENABLE

      public static final Key CORS_ENABLE
    • CORS_HEADERS_ALLOWCREDENTIALS

      public static final Key CORS_HEADERS_ALLOWCREDENTIALS
    • CORS_HEADERS_ALLOWHEADERS

      public static final Key CORS_HEADERS_ALLOWHEADERS
    • CORS_HEADERS_ALLOWMETHODS

      public static final Key CORS_HEADERS_ALLOWMETHODS
    • CORS_HEADERS_EXPOSEHEADERS

      public static final Key CORS_HEADERS_EXPOSEHEADERS
    • CORS_HEADERS_MAXAGE

      public static final Key CORS_HEADERS_MAXAGE
    • CORS_URLPATTERN

      public static final Key CORS_URLPATTERN
    • MANGOOIO_WARNINGS

      public static final Key MANGOOIO_WARNINGS
    • METRICS_ENABLE

      public static final Key METRICS_ENABLE
    • SCHEDULER_ENABLE

      public static final Key SCHEDULER_ENABLE
    • SCHEDULER_POOLSIZE

      public static final Key SCHEDULER_POOLSIZE
    • SMTP_AUTHENTICATION

      public static final Key SMTP_AUTHENTICATION
    • SMTP_DEBUG

      public static final Key SMTP_DEBUG
    • SMTP_FROM

      public static final Key SMTP_FROM
    • SMTP_HOST

      public static final Key SMTP_HOST
    • SMTP_PASSWORD

      public static final Key SMTP_PASSWORD
    • SMTP_PORT

      public static final Key SMTP_PORT
    • SMTP_PROTOCOL

      public static final Key SMTP_PROTOCOL
    • SMTP_USERNAME

      public static final Key SMTP_USERNAME
    • UNDERTOW_MAX_ENTITY_SIZE

      public static final Key UNDERTOW_MAX_ENTITY_SIZE
  • Method Details

    • values

      public static Key[] 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 Key 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
    • toString

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