toString method added

pull/5644/head
Nikita Koksharov 1 year ago
parent 5e1e5e811b
commit a31159c016

@ -34,6 +34,9 @@ public class EntryEvent<K, V> {
private V value;
private V oldValue;
public EntryEvent() {
}
public EntryEvent(RMapCache<K, V> source, Type type, K key, V value, V oldValue) {
super();
this.source = source;
@ -63,4 +66,13 @@ public class EntryEvent<K, V> {
return value;
}
@Override
public String toString() {
return "EntryEvent{" +
"type=" + type +
", key=" + key +
", value=" + value +
", oldValue=" + oldValue +
'}';
}
}

Loading…
Cancel
Save