Enum UAF.ActualMilestoneKindEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DEPLOYED
      Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is a configuration deployment milestone.
      INSERVICE
      Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the configuration goes into service.
      NOLONGERUSED
      Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the deployed configuration is no longer used.
      OTHER
      Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is not one of the standard ActualMilestoneKinds.
      OUTOFSERVICE
      Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the in service configuration goes out of service.
    • Enum Constant Detail

      • INSERVICE

        public static final UAF.ActualMilestoneKindEnum INSERVICE
        Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the configuration goes into service.
      • DEPLOYED

        public static final UAF.ActualMilestoneKindEnum DEPLOYED
        Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is a configuration deployment milestone.
      • NOLONGERUSED

        public static final UAF.ActualMilestoneKindEnum NOLONGERUSED
        Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the deployed configuration is no longer used.
      • OUTOFSERVICE

        public static final UAF.ActualMilestoneKindEnum OUTOFSERVICE
        Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the in service configuration goes out of service.
      • OTHER

        public static final UAF.ActualMilestoneKindEnum OTHER
        Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is not one of the standard ActualMilestoneKinds.
    • Method Detail

      • values

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