Package com.groiss.dms
Enum Class DMS.AddOption
- All Implemented Interfaces:
Serializable
,Comparable<DMS.AddOption>
,Constable
- Enclosing interface:
- DMS
Options for adding a document to a folder. The options are
used if adding the document causes a name conflict.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionInsert the document with a new name.Throw an exception if there is a name conflict.Replace the existing document. -
Method Summary
Modifier and TypeMethodDescriptionstatic DMS.AddOption
Returns the enum constant of this class with the specified name.static DMS.AddOption[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REPLACE_EXISTING
Replace the existing document. -
CREATE_WITH_NEW_NAME
Insert the document with a new name. -
ERROR_IF_EXISTING
Throw an exception if there is a name conflict.
-
-
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
-