Enum ImportFormat

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

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

    • XML

      public static final ImportFormat XML
      XML format: same as that expected by the AdminConsole for DataSource String

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

    • JSON

      public static final ImportFormat JSON
      JSON format: a JSON Array of JSON Objects

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

    • CSV

      public static final ImportFormat CSV
      Comma-separated values, or in general delimiter-separated values based on a provided delimiter.

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

    • AUTO

      public static final ImportFormat AUTO
      Auto-detect format

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

  • Method Details

    • values

      public static ImportFormat[] 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 ImportFormat 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