Enum UAF.ProjectKindEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      PERSONNELDEVELOPMENT
      Indicates that the ActualProject associated with the ProjectKind is an undertaking that relates to the training and enablement of personnel to enable them help achieve the organizations objectives.
      PORTFOLIO
      Indicates that the ActualProject associated with the ProjectKind is an undertaking comprised of the Projects and Programmes that are the totality of an organization's investment (or segment thereof) in the changes required to achieve its strategic objectives.
      PROGRAMME
      Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a temporary, flexible organization created to co-ordinate, direct and oversee the implementation of a set of related Projects and Tasks in order to deliver outcomes and benefits related to the organization s strategic objectives.
      PROJECT
      Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a time-limited endeavor to create a specific set of products or services.
    • Field Summary

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

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

      • PROGRAMME

        public static final UAF.ProjectKindEnum PROGRAMME
        Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a temporary, flexible organization created to co-ordinate, direct and oversee the implementation of a set of related Projects and Tasks in order to deliver outcomes and benefits related to the organization s strategic objectives. A programme is likely to have a lifespan of several years. During a programme lifecycle, projects are initiated, executed, and closed. Programmes provide an umbrella under which these projects can be co-ordinated. The programme integrates the projects so that it can deliver an outcome greater than the sum of its parts.
      • PORTFOLIO

        public static final UAF.ProjectKindEnum PORTFOLIO
        Indicates that the ActualProject associated with the ProjectKind is an undertaking comprised of the Projects and Programmes that are the totality of an organization's investment (or segment thereof) in the changes required to achieve its strategic objectives.
      • PROJECT

        public static final UAF.ProjectKindEnum PROJECT
        Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a time-limited endeavor to create a specific set of products or services.
      • PERSONNELDEVELOPMENT

        public static final UAF.ProjectKindEnum PERSONNELDEVELOPMENT
        Indicates that the ActualProject associated with the ProjectKind is an undertaking that relates to the training and enablement of personnel to enable them help achieve the organizations objectives.
    • Field Detail

      • text

        private final java.lang.String text
    • Constructor Detail

      • ProjectKindEnum

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

      • values

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

        @CheckForNull
        public static UAF.ProjectKindEnum from​(@CheckForNull
                                               java.lang.Object o)