Enum ColumnTag

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ColumnTag>

    public enum ColumnTag
    extends java.lang.Enum<ColumnTag>
    Represents the tags to indicate a special column.
    • Enum Constant Detail

      • CALENDAR_START_DATE

        public static final ColumnTag CALENDAR_START_DATE
        Represents CALENDAR_START_DATE tag.
      • CALENDAR_END_DATE

        public static final ColumnTag CALENDAR_END_DATE
        Represents CALENDAR_END_DATE tag.
      • CARD_DONE

        public static final ColumnTag CARD_DONE
        Represents CARD_DONE tag.
      • GANTT_START_DATE

        public static final ColumnTag GANTT_START_DATE
        Represents GANTT_START_DATE tag.
      • GANTT_END_DATE

        public static final ColumnTag GANTT_END_DATE
        Represents GANTT_END_DATE tag.
      • GANTT_PERCENT_COMPLETE

        public static final ColumnTag GANTT_PERCENT_COMPLETE
        Represents GANTT_PERCENT_COMPLETE tag.
      • GANTT_DISPLAY_LABEL

        public static final ColumnTag GANTT_DISPLAY_LABEL
        Represents GANTT_DISPLAY_LABEL tag.
      • GANTT_PREDECESSOR

        public static final ColumnTag GANTT_PREDECESSOR
        Represents GANTT_PREDECESSOR tag.
      • GANTT_DURATION

        public static final ColumnTag GANTT_DURATION
        Represents GANTT_DURATION tag.
      • GANTT_ASSIGNED_RESOURCE

        public static final ColumnTag GANTT_ASSIGNED_RESOURCE
        Represents GANTT_ASSIGNED_RESOURCE.
      • GANTT_ALLOCATION

        public static final ColumnTag GANTT_ALLOCATION
        used for the allocation percentage for the resource management feature.
    • Method Detail

      • values

        public static ColumnTag[] 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 (ColumnTag c : ColumnTag.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ColumnTag 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