Enum ChangeType

    • Enum Constant Detail

      • DATA_MODEL_STATUS_CHANGE

        public static final ChangeType DATA_MODEL_STATUS_CHANGE
      • OBJECT_NAME_CHANGE

        public static final ChangeType OBJECT_NAME_CHANGE
      • CLASS_NAME_CHANGE

        public static final ChangeType CLASS_NAME_CHANGE
      • SUPER_CLASS_NAME_CHANGE

        public static final ChangeType SUPER_CLASS_NAME_CHANGE
      • PACKAGE_NAME_CHANGE

        public static final ChangeType PACKAGE_NAME_CHANGE
      • FIELD_NAME_CHANGE

        public static final ChangeType FIELD_NAME_CHANGE
      • FIELD_TYPE_CHANGE

        public static final ChangeType FIELD_TYPE_CHANGE
      • FIELD_ANNOTATION_VALUE_CHANGE

        public static final ChangeType FIELD_ANNOTATION_VALUE_CHANGE
      • FIELD_ANNOTATION_ADD_CHANGE

        public static final ChangeType FIELD_ANNOTATION_ADD_CHANGE
      • FIELD_ANNOTATION_REMOVE_CHANGE

        public static final ChangeType FIELD_ANNOTATION_REMOVE_CHANGE
      • TYPE_ANNOTATION_VALUE_CHANGE

        public static final ChangeType TYPE_ANNOTATION_VALUE_CHANGE
      • TYPE_ANNOTATION_ADD_CHANGE

        public static final ChangeType TYPE_ANNOTATION_ADD_CHANGE
      • TYPE_ANNOTATION_REMOVE_CHANGE

        public static final ChangeType TYPE_ANNOTATION_REMOVE_CHANGE
      • METHOD_ADD_CHANGE

        public static final ChangeType METHOD_ADD_CHANGE
      • METHOD_REMOVE_CHANGE

        public static final ChangeType METHOD_REMOVE_CHANGE
      • METHOD_ANNOTATION_ADD_CHANGE

        public static final ChangeType METHOD_ANNOTATION_ADD_CHANGE
      • NESTED_CLASS_ADD_CHANGE

        public static final ChangeType NESTED_CLASS_ADD_CHANGE
      • NESTED_CLASS_REMOVE_CHANGE

        public static final ChangeType NESTED_CLASS_REMOVE_CHANGE
    • Method Detail

      • values

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

        public static ChangeType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null