Enum LoadProjectErrorStatus

java.lang.Object
java.lang.Enum<LoadProjectErrorStatus>
com.smartgwt.client.types.LoadProjectErrorStatus
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<LoadProjectErrorStatus>, Constable

public enum LoadProjectErrorStatus extends Enum<LoadProjectErrorStatus> implements ValueEnum
  • Enum Constant Details

    • TIMEOUT

      public static final LoadProjectErrorStatus TIMEOUT
      server has not responded within configured request timeout

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "timeout".

    • NORESPONSEFROMURL

      public static final LoadProjectErrorStatus NORESPONSEFROMURL
      can't reach server at serverURL

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "noResponseFromURL".

    • BADREIFYSERVERURL

      public static final LoadProjectErrorStatus BADREIFYSERVERURL
      no project loader at serverURL

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "badReifyServerURL".

    • BADCREDENTIALS

      public static final LoadProjectErrorStatus BADCREDENTIALS
      invalid userName or password

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "badCredentials".

    • PROJECTNOTFOUND

      public static final LoadProjectErrorStatus PROJECTNOTFOUND
      none of the requested projects were found

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "projectNotFound".

    • SERVLETERROR

      public static final LoadProjectErrorStatus SERVLETERROR
  • Method Details

    • values

      public static LoadProjectErrorStatus[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static LoadProjectErrorStatus 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
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum