Class ImportType


  • @Deprecated
    public class ImportType
    extends java.lang.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 ImportType CSV
      Deprecated.
      Specifies the import type used for importing data from a CSV file into a table.
      static ImportType EXCEL_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the import type used for importing data from an Excel file into multiples tables.
      static ImportType EXCEL_FOR_SINGLE_TABLE
      Deprecated.
      Specifies the import type used for importing data from an Excel file into a table.
      static ImportType UNKNOWN
      Deprecated.
      Specifies an unidentified type.
      static ImportType XML_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the import type used for importing data from XML files into multiples tables.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String getValue()
      Deprecated.
      Returns the String value of the import type.
      boolean isCSV()
      Deprecated.
      Returns true if the import type is CSV.
      boolean isExcelForMultipleTables()
      Deprecated.
      Returns true if the import type is EXCEL_FOR_MULTIPLE_TABLES.
      boolean isExcelForSingleTable()
      Deprecated.
      Returns true if the import type is EXCEL_FOR_SINGLE_TABLE.
      boolean isXMLForMultipleTables()
      Deprecated.
      Returns true if the import type is XML_FOR_MULTIPLE_TABLES.
      static ImportType parse​(java.lang.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 Detail

      • 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 Detail

      • parse

        public static ImportType parse​(java.lang.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 java.lang.String getValue()
        Deprecated.
        Returns the String value of the import type.