public abstract class NonSyntheticEntryFilter<T> extends Object implements EntryFilter<Object,T>, PortableObject, ExternalizableLite
| Constructor and Description |
|---|
NonSyntheticEntryFilter() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
evaluate(T o)
Apply the test to the input argument.
|
boolean |
evaluateEntry(Map.Entry entry)
Apply the test to a Map Entry.
|
abstract boolean |
isJCacheSynthetic(CacheEvent evt) |
void |
readExternal(DataInput in)
Restore the contents of this object by loading the object's state from the passed DataInput object.
|
void |
readExternal(PofReader pofReader)
Restore the contents of a user type instance by reading its state using the specified PofReader object.
|
void |
writeExternal(DataOutput out)
Save the contents of this object by storing the object's state into the passed DataOutput object.
|
void |
writeExternal(PofWriter pofWriter)
Save the contents of a POF user type instance by writing its state using the specified PofWriter object.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitand, asLimitFilter, associatedWith, forKeys, forPartitions, or, xorpublic boolean evaluate(T o)
Filterpublic boolean evaluateEntry(Map.Entry entry)
EntryFilterevaluateEntry in interface EntryFilter<Object,T>entry - the Map Entry to evaluate; never nullpublic abstract boolean isJCacheSynthetic(CacheEvent evt)
public void readExternal(PofReader pofReader) throws IOException
PortableObjectreadExternal in interface PortableObjectpofReader - the PofReader from which to read the object's stateIOException - if an I/O error occurspublic void writeExternal(PofWriter pofWriter) throws IOException
PortableObjectwriteExternal in interface PortableObjectpofWriter - the PofWriter to which to write the object's stateIOException - if an I/O error occurspublic void readExternal(DataInput in) throws IOException
ExternalizableLitereadExternal in interface ExternalizableLitein - the DataInput stream to read data from in order to restore the state of this objectIOException - if an I/O exception occursNotActiveException - if the object is not in its initial state, and therefore cannot be deserialized intopublic void writeExternal(DataOutput out) throws IOException
ExternalizableLitewriteExternal in interface ExternalizableLiteout - the DataOutput stream to write the state of this object toIOException - if an I/O exception occurs