Enum Class Env

java.lang.Object
java.lang.Enum<Env>
energy.eddie.examples.exampleapp.Env
All Implemented Interfaces:
Serializable, Comparable<Env>, Constable

public enum Env extends Enum<Env>
  • Enum Constant Details

    • JDBC_URL

      public static final Env JDBC_URL
    • JDBC_USER

      public static final Env JDBC_USER
    • JDBC_PASSWORD

      public static final Env JDBC_PASSWORD
    • EDDIE_PUBLIC_URL

      public static final Env EDDIE_PUBLIC_URL
    • PUBLIC_CONTEXT_PATH

      public static final Env PUBLIC_CONTEXT_PATH
    • KAFKA_BOOTSTRAP_SERVERS

      public static final Env KAFKA_BOOTSTRAP_SERVERS
  • Method Details

    • values

      public static Env[] 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 Env 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
    • get

      public String get()