DiffedFieldValue.java | 47 * Whether the field was added to, deleted from, or matched with a field in 53 * A status enum to indicate whether a field was added to, deleted from, or 60 ADDED, 95 public static DiffedFieldValue added(FieldValue current) { method in class:DiffedFieldValue 96 return new DiffedFieldValue(current.name, current.type, current.value, null, Status.ADDED); 133 case ADDED:
|