Package com.sas.lsaf.workflow
Enum Class FlowAttributeType
- All Implemented Interfaces:
Serializable,Comparable<FlowAttributeType>,Constable
The types to map process flow elements with values.
- Since:
- 2.4
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe attribute type isBoolean.The attribute type is date.The attribute type is file.The attribute type is folder.The attribute type is numeric.The attribute type is principal.The attribute type is text.Attribute type is a user. -
Method Summary
Modifier and TypeMethodDescriptionstatic FlowAttributeTypeReturns the enum constant of this class with the specified name.static FlowAttributeType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
USER
Attribute type is a user. -
PRINCIPAL
-
FILE
The attribute type is file. -
FOLDER
The attribute type is folder. -
DATE
The attribute type is date. The value for this type isdate. -
TEXT
The attribute type is text. -
NUMERIC
The attribute type is numeric. -
BOOLEAN
-
-
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
-