Class ImportType

java.lang.Object
com.orchestranetworks.addon.adix.ImportType

@Deprecated public class ImportType extends Object
Deprecated.
Since 2.3.0, replaced by ServiceType.
This enumeration class defines the possible import types.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ImportType
    Deprecated.
    Specifies the import type used for importing data from a CSV file into a table.
    static final ImportType
    Deprecated.
    Specifies the import type used for importing data from an Excel file into multiples tables.
    static final ImportType
    Deprecated.
    Specifies the import type used for importing data from an Excel file into a table.
    static final ImportType
    Deprecated.
    Specifies an unidentified type.
    static final ImportType
    Deprecated.
    Specifies the import type used for importing data from XML files into multiples tables.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Returns the String value of the import type.
    boolean
    Deprecated.
    Returns true if the import type is CSV.
    boolean
    Deprecated.
    Returns true if the import type is EXCEL_FOR_MULTIPLE_TABLES.
    boolean
    Deprecated.
    Returns true if the import type is EXCEL_FOR_SINGLE_TABLE.
    boolean
    Deprecated.
    Returns true if the import type is XML_FOR_MULTIPLE_TABLES.
    static ImportType
    parse(String value)
    Deprecated.
    Returns the Adix import type instance corresponding to the value specified.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • CSV

      public static final ImportType CSV
      Deprecated.
      Specifies the import type used for importing data from a CSV file into a table.
    • EXCEL_FOR_SINGLE_TABLE

      public static final ImportType EXCEL_FOR_SINGLE_TABLE
      Deprecated.
      Specifies the import type used for importing data from an Excel file into a table.
    • EXCEL_FOR_MULTIPLE_TABLES

      public static final ImportType EXCEL_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the import type used for importing data from an Excel file into multiples tables.
    • XML_FOR_MULTIPLE_TABLES

      public static final ImportType XML_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the import type used for importing data from XML files into multiples tables.
    • UNKNOWN

      public static final ImportType UNKNOWN
      Deprecated.
      Specifies an unidentified type.
  • Method Details

    • parse

      public static ImportType parse(String value)
      Deprecated.
      Returns the Adix import type instance corresponding to the value specified.
    • isCSV

      public boolean isCSV()
      Deprecated.
      Returns true if the import type is CSV.
    • isExcelForSingleTable

      public boolean isExcelForSingleTable()
      Deprecated.
      Returns true if the import type is EXCEL_FOR_SINGLE_TABLE.
    • isExcelForMultipleTables

      public boolean isExcelForMultipleTables()
      Deprecated.
      Returns true if the import type is EXCEL_FOR_MULTIPLE_TABLES.
    • isXMLForMultipleTables

      public boolean isXMLForMultipleTables()
      Deprecated.
      Returns true if the import type is XML_FOR_MULTIPLE_TABLES.
    • getValue

      public String getValue()
      Deprecated.
      Returns the String value of the import type.