Home | History | Annotate | Download | only in heapdump

Lines Matching refs:current

37    * The value of the field in the current heap dump.
39 public final Value current;
58 * The field exists in the current heap dump but not the baseline.
63 * The field exists in both the current and baseline heap dumps.
68 * The field exists in the baseline heap dump but not the current.
74 * Constructs a DiffedFieldValue where there are both current and baseline
77 * @param current the current field
81 public static DiffedFieldValue matched(FieldValue current, FieldValue baseline) {
82 return new DiffedFieldValue(current.name,
83 current.type,
84 current.value,
92 * @param current the current field
95 public static DiffedFieldValue added(FieldValue current) {
96 return new DiffedFieldValue(current.name, current.type, current.value, null, Status.ADDED);
100 * Constructs a DiffedFieldValue where there is no current field.
109 private DiffedFieldValue(String name, Type type, Value current, Value baseline, Status status) {
112 this.current = current;
123 && Objects.equals(current, other.current)
134 return "(" + name + " " + type + " +" + current + ")";
137 return "(" + name + " " + type + " " + current + " " + baseline + ")";