Enum DiffStatus

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

    public enum DiffStatus
    extends java.lang.Enum<DiffStatus>
    • Enum Constant Detail

      • UPDATED_IN_SOURCE

        public static final DiffStatus UPDATED_IN_SOURCE
      • UPDATED_IN_LAUNCH

        public static final DiffStatus UPDATED_IN_LAUNCH
      • CONFLICT

        public static final DiffStatus CONFLICT
      • UP_TO_DATE

        public static final DiffStatus UP_TO_DATE
      • EXISTS_ONLY_IN_LAUNCH

        public static final DiffStatus EXISTS_ONLY_IN_LAUNCH
      • EXISTS_ONLY_IN_SOURCE

        public static final DiffStatus EXISTS_ONLY_IN_SOURCE
    • Method Detail

      • values

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

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