@GwtIncompatible(value="To be supported") static enum GenericMapMaker.NullListener extends java.lang.Enum<GenericMapMaker.NullListener> implements MapMaker.RemovalListener<java.lang.Object,java.lang.Object>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
void |
onRemoval(MapMaker.RemovalNotification<java.lang.Object,java.lang.Object> notification)
Notifies the listener that a removal occurred at some point in the past.
|
static GenericMapMaker.NullListener |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GenericMapMaker.NullListener[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericMapMaker.NullListener INSTANCE
public static GenericMapMaker.NullListener[] values()
for (GenericMapMaker.NullListener c : GenericMapMaker.NullListener.values()) System.out.println(c);
public static GenericMapMaker.NullListener valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic void onRemoval(MapMaker.RemovalNotification<java.lang.Object,java.lang.Object> notification)
MapMaker.RemovalListener
onRemoval
in interface MapMaker.RemovalListener<java.lang.Object,java.lang.Object>