Package com.sas.lsaf.core.type
Enum Class Type.Capability
- All Implemented Interfaces:
Serializable,Comparable<Type.Capability>,Constable
- Enclosing class:
Type
This enumeration defines the capabilities that are available by each type. Some of the capabilities are defined by the system (such as
folder types always have the
FILES capability). Context capabilities are defined by customers when
their custom configurable hierarchy is configured.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis capability enables a context (and folder) type to enable folders and files to be created within the context.This capability enables a context type to maintain a membership list.This capability enables a context type to maintain aRepositoryItem.State.This capability enables a context type to maintain study and standard information.This capability enables a context type to be created at the top of the repository hierarchy.This capability enables a context type to enlist in workflow-related definitions and tasks. -
Method Summary
Modifier and TypeMethodDescriptionstatic Type.CapabilityReturns the enum constant of this class with the specified name.static Type.Capability[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TOP
This capability enables a context type to be created at the top of the repository hierarchy.- See Also:
-
MEMBERSHIP
This capability enables a context type to maintain a membership list. It also allows groups and roles to be defined and role to be assigned.- See Also:
-
WORKFLOW
This capability enables a context type to enlist in workflow-related definitions and tasks. This capability requires theMEMBERSHIPcapability. -
STATE
This capability enables a context type to maintain aRepositoryItem.State. -
STUDY
This capability enables a context type to maintain study and standard information. -
FILES
This capability enables a context (and folder) type to enable folders and files to be created within the context. This capability is always defined with the folder type. But, can be configured by customers when their custom configurable hierarchy is configured.
-
-
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
-