Enum HierarchialTranslationTable.Format
- java.lang.Object
- 
- java.lang.Enum<HierarchialTranslationTable.Format>
- 
- com.inductiveautomation.ignition.designer.i18n.workspace.HierarchialTranslationTable.Format
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<HierarchialTranslationTable.Format>
 - Enclosing class:
- HierarchialTranslationTable
 
 protected static enum HierarchialTranslationTable.Format extends java.lang.Enum<HierarchialTranslationTable.Format> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CSVPROPERTIESXML
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description HierarchialTranslationTable.AbstractExportTaskcreateExportTask(java.lang.String baseDir, java.lang.String baseFileName, java.util.List<java.util.Locale> locales, java.util.Collection<java.lang.String> keys, TranslationPackage pkg)HierarchialTranslationTable.AbstractImportTaskcreateImportTask(java.io.File file, HierarchialTranslationTable.AbstractImportTask.OnCompleteCallback callback)static HierarchialTranslationTable.FormatgetFor(java.lang.String name)static HierarchialTranslationTable.FormatvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HierarchialTranslationTable.Format[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
XMLpublic static final HierarchialTranslationTable.Format XML 
 - 
PROPERTIESpublic static final HierarchialTranslationTable.Format PROPERTIES 
 - 
CSVpublic static final HierarchialTranslationTable.Format CSV 
 
- 
 - 
Method Detail- 
valuespublic static HierarchialTranslationTable.Format[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HierarchialTranslationTable.Format c : HierarchialTranslationTable.Format.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HierarchialTranslationTable.Format valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
createExportTaskpublic HierarchialTranslationTable.AbstractExportTask createExportTask(java.lang.String baseDir, java.lang.String baseFileName, java.util.List<java.util.Locale> locales, java.util.Collection<java.lang.String> keys, TranslationPackage pkg) 
 - 
createImportTaskpublic HierarchialTranslationTable.AbstractImportTask createImportTask(java.io.File file, HierarchialTranslationTable.AbstractImportTask.OnCompleteCallback callback) 
 - 
getForpublic static HierarchialTranslationTable.Format getFor(java.lang.String name) 
 
- 
 
-