Enum UAF.ChallengeKindEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BUSINESS
      Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the business operations of the enterprise.
      ENTERPRISE
      Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the overall operations of the enterprise.
      MISSION
      Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to one or more Missions or Enduring Tasks of the enterprise.
      OTHER
      Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to some unspecified aspect of the enterprise.
      STRATEGIC
      Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to achieving the desired Effects or Outcomes of the enterprise.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String text  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private ChallengeKindEnum​(java.lang.String text)  
    • Enum Constant Detail

      • STRATEGIC

        public static final UAF.ChallengeKindEnum STRATEGIC
        Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to achieving the desired Effects or Outcomes of the enterprise.
      • ENTERPRISE

        public static final UAF.ChallengeKindEnum ENTERPRISE
        Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the overall operations of the enterprise.
      • MISSION

        public static final UAF.ChallengeKindEnum MISSION
        Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to one or more Missions or Enduring Tasks of the enterprise.
      • BUSINESS

        public static final UAF.ChallengeKindEnum BUSINESS
        Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the business operations of the enterprise.
      • OTHER

        public static final UAF.ChallengeKindEnum OTHER
        Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to some unspecified aspect of the enterprise.
    • Field Detail

      • text

        private final java.lang.String text
    • Constructor Detail

      • ChallengeKindEnum

        private ChallengeKindEnum​(java.lang.String text)
    • Method Detail

      • values

        public static UAF.ChallengeKindEnum[] 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.ChallengeKindEnum c : UAF.ChallengeKindEnum.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.ChallengeKindEnum 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