Package com.emc.documentum.rest.constant
Enum Class DmlViewParam
- All Implemented Interfaces:
Serializable
,Comparable<DmlViewParam>
,Constable
Enum for dml view parameter
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll type and type's properties attributes will be returned, including type name, label, and parent, and property name, label, type, length, repeating, hidden, notnull, readonly, required, default, searchable.Only basic dml will be returned, which includes type name, parent, and property name, type, length, repeating.The minimum result of type will be returned, which does not include properties at all, and type label is not displayed either. -
Method Summary
Modifier and TypeMethodDescriptionstatic DmlViewParam
Returns the enum constant of this class with the specified name.static DmlViewParam[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BASIC
Only basic dml will be returned, which includes type name, parent, and property name, type, length, repeating. -
NONE
The minimum result of type will be returned, which does not include properties at all, and type label is not displayed either. Only type name and parent will be returned. -
ALL
All type and type's properties attributes will be returned, including type name, label, and parent, and property name, label, type, length, repeating, hidden, notnull, readonly, required, default, searchable.
-
-
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
-