Package com.smartgwt.client.types
Enum FieldImportStrategy
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<FieldImportStrategy>
,Constable
Options for how values in the import dataset (for example, the CSV file) are transformed during import if the field is a
foreignKey
mapped to a displayField
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe import process will attempt to discover the best setting to use, based on the values in the first record, and use that setting for every remaining record in the import datasetThe import process expects values in the import dataset to be display values, and it will transform them to the corresponding underlying keys if foundSame as "display", but results invalidation error
if corresponding underlying keys were not foundThe import process expects values in the import dataset to be the real underlying key values, and performs no transformation -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static FieldImportStrategy
Returns the enum constant of this type with the specified name.static FieldImportStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
KEY
The import process expects values in the import dataset to be the real underlying key values, and performs no transformationIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "key". -
DISPLAY
The import process expects values in the import dataset to be display values, and it will transform them to the corresponding underlying keys if foundIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "display". -
DISPLAYREQUIRED
Same as "display", but results invalidation error
if corresponding underlying keys were not foundIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "displayRequired". -
AUTO
The import process will attempt to discover the best setting to use, based on the values in the first record, and use that setting for every remaining record in the import datasetIf 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
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
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 nameNullPointerException
- if the argument is null
-
getValue
-