Enum Class Type.Capability

java.lang.Object
java.lang.Enum<Type.Capability>
com.sas.lsaf.core.type.Type.Capability
All Implemented Interfaces:
Serializable, Comparable<Type.Capability>, Constable
Enclosing class:
Type

public static enum Type.Capability extends Enum<Type.Capability>
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.
  • Enum Constant Details

    • TOP

      public static final Type.Capability TOP
      This capability enables a context type to be created at the top of the repository hierarchy.
      See Also:
    • MEMBERSHIP

      public static final Type.Capability 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

      public static final Type.Capability WORKFLOW
      This capability enables a context type to enlist in workflow-related definitions and tasks. This capability requires the MEMBERSHIP capability.
    • STATE

      public static final Type.Capability STATE
      This capability enables a context type to maintain a RepositoryItem.State.
    • STUDY

      public static final Type.Capability STUDY
      This capability enables a context type to maintain study and standard information.
    • FILES

      public static final Type.Capability 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

      public static Type.Capability[] 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

      public static Type.Capability valueOf(String name)
      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 name
      NullPointerException - if the argument is null