net.sf.javagimmicks.collections8.event.MapEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.collections8.event;
import java.util.Map;
import java.util.Map.Entry;
import net.sf.javagimmicks.event.Event;
import net.sf.javagimmicks.event.Observable;
/**
* Represents a change in a {@link Observable} {@link Map} - like
* {@link ObservableEventMap}.
*/
public interface MapEvent extends Event>
{
/**
* The possible types of {@link MapEvent}s.
*/
enum Type
{
/**
* An {@link Entry} was added
*/
ADDED,
/**
* An {@link Entry} was updated
*/
UPDATED,
/**
* An {@link Entry} was removed
*/
REMOVED
}
/**
* Returns the type of the event.
*
* @return the type of the event
* @see Type
*/
Type getType();
/**
* Returns the key of the changed {@link Entry}.
*
* @return the key of the changed {@link Entry}
*/
K getKey();
/**
* Returns the value of a removed/added {@link Entry} in case of
* {@link Type#REMOVED} or {@link Type#ADDED} - or the old value of an
* updated {@link Entry} in case of {@link Type#UPDATED}.
*
* @return the removed/added or old value of an update
*/
V getValue();
/**
* In case of {@link Type#UPDATED}) returns the value of the updated
* {@link Entry}.
*
* @return the value of an updated {@link Entry}
*/
V getNewValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy