Package com.smartgwt.client.types
Enum PartialCommitOption
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<PartialCommitOption>
,Constable
Action to take if a user attempts to save the dataset produced by a
BatchUploader
whilst it still contains errors.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSilently allow the partial commit to proceed (note that this will result in the user losing those records that contain errors)Pop up a message window showing theBatchUploader.partialCommitError
and prevent the partial commitPop up a confirmation window with theBatchUploader.partialCommitPrompt
and allow the user to choose whether or not to proceedCommit any records that are error-free and remove them from the grid. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static PartialCommitOption
Returns the enum constant of this type with the specified name.static PartialCommitOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALLOW
Silently allow the partial commit to proceed (note that this will result in the user losing those records that contain errors)If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "allow". -
PREVENT
Pop up a message window showing theBatchUploader.partialCommitError
and prevent the partial commitIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "prevent". -
PROMPT
Pop up a confirmation window with theBatchUploader.partialCommitPrompt
and allow the user to choose whether or not to proceedIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "prompt". -
RETAIN
Commit any records that are error-free and remove them from the grid. If any records had errors, leave them in the grid and leave the grid visible. If no records had errors, run normal cleanup as we would for "allow". This option allows the user to fix errors iteratively, rather than having to fix everything upfront before committingIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "retain".
-
-
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
-