Package com.ads.api.beans.mm.helper
Enum Class MappingImportHelper.ImportFileType
java.lang.Object
java.lang.Enum<MappingImportHelper.ImportFileType>
com.ads.api.beans.mm.helper.MappingImportHelper.ImportFileType
- All Implemented Interfaces:
Serializable,Comparable<MappingImportHelper.ImportFileType>,Constable
- Enclosing class:
- MappingImportHelper
public static enum MappingImportHelper.ImportFileType
extends Enum<MappingImportHelper.ImportFileType>
The constants of this enumerated type provides a simple classification of the declared elements.
These constants are used to specify the ImportFileType such as MAPPINGMANAGER_LEGACY_EXCEL, MAPPINGMANAGER_EXCEL, MAPPINGMANAGER_XML, INFORMATICA,
DATASTAGE, SSIS_2008.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDATASTAGE ImportFileType is used to refer when the fileType we import is DATASTAGE.INFORMATICA ImportFileType is used to refer when the fileType we import is INFORMATICA.MAPPINGMANAGER_EXCEL ImportFileType is used to refer when the fileType we import is MAPPINGMANAGER_EXCEL.MAPPINGMANAGER_LEGACY_EXCEL ImportFileType is used to refer when the fileType we import is MAPPINGMANAGER_LEGACY_EXCEL.MAPPINGMANAGER_XML ImportFileType is used to refer when the fileType we import is MAPPINGMANAGER_XML.SSIS_2008 ImportFileType is used to refer when the fileType we import is SSIS_2008. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static MappingImportHelper.ImportFileType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MAPPINGMANAGER_LEGACY_EXCEL
MAPPINGMANAGER_LEGACY_EXCEL ImportFileType is used to refer when the fileType we import is MAPPINGMANAGER_LEGACY_EXCEL.
importing MAPPINGMANAGER_LEGACY_EXCEL is possible only on Project and Subject Nodes.
MAPPINGMANAGER_LEGACY_EXCEL will create the map with name specified in Legacy Excel and imports the mappingSpecifications in to that map.
In case if a map exists with the same name, it creates another map with the name suffixed by a number. -
MAPPINGMANAGER_EXCEL
MAPPINGMANAGER_EXCEL ImportFileType is used to refer when the fileType we import is MAPPINGMANAGER_EXCEL.
MAPPINGMANAGER_EXCEL is possible only on a particular Map. -
MAPPINGMANAGER_XML
MAPPINGMANAGER_XML ImportFileType is used to refer when the fileType we import is MAPPINGMANAGER_XML.
MAPPINGMANAGER_XML is possible on Project, Subject and Mappings Nodes. If the mappingSpecification with the same name exists it overwrites the mappingSpecification. -
INFORMATICA
INFORMATICA ImportFileType is used to refer when the fileType we import is INFORMATICA. -
DATASTAGE
DATASTAGE ImportFileType is used to refer when the fileType we import is DATASTAGE. -
SSIS_2008
SSIS_2008 ImportFileType is used to refer when the fileType we import is SSIS_2008.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-