Enum Class ConfigPhase

java.lang.Object
java.lang.Enum<ConfigPhase>
io.quarkus.runtime.annotations.ConfigPhase
All Implemented Interfaces:
Serializable, Comparable<ConfigPhase>, Constable

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

    • BUILD_TIME

      public static final ConfigPhase BUILD_TIME
      Values are read and available for usage at build time.
    • BUILD_AND_RUN_TIME_FIXED

      public static final ConfigPhase BUILD_AND_RUN_TIME_FIXED
      Values are read and available for usage at build time, and available on a read-only basis at run time.
    • RUN_TIME

      public static final ConfigPhase RUN_TIME
      Values are read and available for usage at run time and are re-read on each program execution.
  • Method Details

    • values

      public static ConfigPhase[] 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 ConfigPhase 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
    • isAvailableAtBuild

      public boolean isAvailableAtBuild()
    • isAvailableAtRun

      public boolean isAvailableAtRun()
    • isReadAtStaticInit

      public boolean isReadAtStaticInit()
    • isReadAtMain

      public boolean isReadAtMain()
    • toString

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