Enum EnvironmentType

    • Enum Constant Detail

      • DEVELOPMENT

        public static final EnvironmentType DEVELOPMENT
        The environment where the portal's functionalities are developed.
        Since:
        7.1.0
      • STRUCTURE_BUILDING

        public static final EnvironmentType STRUCTURE_BUILDING
        The environment where the portal's structure is built.
        Since:
        7.1.0
      • QUALITY_ASSURANCE

        public static final EnvironmentType QUALITY_ASSURANCE
        The environment where quality assurance tests are performed.
        Since:
        7.1.0
      • USER_ACCEPTANCE

        public static final EnvironmentType USER_ACCEPTANCE
        The environment where user acceptance tests are performed.
        Since:
        7.1.0
      • PRODUCTION

        public static final EnvironmentType PRODUCTION
        The environment where the final user use the portal.
        Since:
        7.1.0
    • Method Detail

      • values

        public static EnvironmentType[] 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 (EnvironmentType c : EnvironmentType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EnvironmentType 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