Enum UAF.CapabilityKindEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UAF.CapabilityKindEnum>
    Enclosing class:
    UAF

    public static enum UAF.CapabilityKindEnum
    extends java.lang.Enum<UAF.CapabilityKindEnum>
    Enumeration of the possible kinds of Capability.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      OPERATIONAL
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that OperationalAgent can have performing an Operational Activity, Mission task, or conducting an Enduring Task.
      OTHER
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that unspecified entity can have performing an Activity, Mission task, or conducting an Enduring Task.
      PERSONNEL
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that an Organizational Resource (e.g.
      RESOURCE
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that a ResourcePerformer (e.g.
      SECURITY
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that an OperationalMitigation or ResourceMitigation can have performing a Security Process.
      SERVICE
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that a Service can have performing a Service Function.
      STRATEGIC
      Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that an enterprise asset can have performing a Mission, ValueStream or conducting an Enduring Task to enable achievement of desired Effects and Outcomes.
    • Enum Constant Detail

      • STRATEGIC

        public static final UAF.CapabilityKindEnum STRATEGIC
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that an enterprise asset can have performing a Mission, ValueStream or conducting an Enduring Task to enable achievement of desired Effects and Outcomes.
      • OPERATIONAL

        public static final UAF.CapabilityKindEnum OPERATIONAL
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that OperationalAgent can have performing an Operational Activity, Mission task, or conducting an Enduring Task.
      • SERVICE

        public static final UAF.CapabilityKindEnum SERVICE
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that a Service can have performing a Service Function.
      • RESOURCE

        public static final UAF.CapabilityKindEnum RESOURCE
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that a ResourcePerformer (e.g. ResourceArchitecture, CapabilityConfiguration, ResourceArtifact, ResourceService) can have performing a Function.
      • PERSONNEL

        public static final UAF.CapabilityKindEnum PERSONNEL
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that an Organizational Resource (e.g. Organization, Person, Post, Responsibility) can have performing a Function.
      • SECURITY

        public static final UAF.CapabilityKindEnum SECURITY
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that an OperationalMitigation or ResourceMitigation can have performing a Security Process.
      • OTHER

        public static final UAF.CapabilityKindEnum OTHER
        Indicates that the Capability associated with this CapabilityKind is the ability, aptitude or fitness that unspecified entity can have performing an Activity, Mission task, or conducting an Enduring Task.
    • Method Detail

      • values

        public static UAF.CapabilityKindEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UAF.CapabilityKindEnum c : UAF.CapabilityKindEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UAF.CapabilityKindEnum valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getText

        public java.lang.String getText()