Enum Environment

    • Enum Constant Detail

      • MOBILE_SERVER

        public static final Environment MOBILE_SERVER
      • MOBILE_AUTONOMOUS_SERVER

        public static final Environment MOBILE_AUTONOMOUS_SERVER
      • THIN_CLIENT

        public static final Environment THIN_CLIENT
      • MNG_CLIENT

        public static final Environment MNG_CLIENT
      • MOBILE_CLIENT

        public static final Environment MOBILE_CLIENT
      • WEB_CLIENT

        public static final Environment WEB_CLIENT
      • EXTERNAL_CONN

        public static final Environment EXTERNAL_CONN
      • MOBILE_THIN_CLIENT

        public static final Environment MOBILE_THIN_CLIENT
    • Method Detail

      • values

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

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