Enum ConfigPhase

    • Enum Constant Detail

      • 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.
      • BOOTSTRAP

        public static final ConfigPhase BOOTSTRAP
        Values are read and available for usage at run time and are re-read on each program execution. These values are used to configure ConfigSourceProvider implementations
      • 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 Detail

      • values

        public static ConfigPhase[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ConfigPhase c : ConfigPhase.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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

        public boolean isAvailableAtBuild()
      • isAvailableAtRun

        public boolean isAvailableAtRun()
      • isReadAtStaticInit

        public boolean isReadAtStaticInit()
      • isReadAtMain

        public boolean isReadAtMain()