Package com.tangosol.coherence.config
Class ResolvableParameterList
java.lang.Object
com.tangosol.coherence.config.ResolvableParameterList
- All Implemented Interfaces:
ParameterList,ParameterResolver,ExternalizableLite,PortableObject,Serializable,Iterable<Parameter>
public class ResolvableParameterList
extends Object
implements ParameterList, ParameterResolver, ExternalizableLite, PortableObject
A
ResolvableParameterList is a ParameterList implementation that additionally supports
name-based Parameter resolution as defined by the ParameterResolver interface.- Since:
- Coherence 12.1.2
- Author:
- bo 2011.06.22
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an emptyResolvableParameterList.ResolvableParameterList(ParameterList listParameters) Constructs aResolvableParameterListbased on aParameterList.Construct aResolvableParameterListfrom provided map. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds aParameterto the end of theParameterListor replaces an existingParameterin theParameterList.booleanisEmpty()Determines if there are anyParameters in theParameterList.iterator()voidreadExternal(PofReader reader) Restore the contents of a user type instance by reading its state using the specified PofReader object.voidRestore the contents of this object by loading the object's state from the passed DataInput object.Obtains the specified namedParameter.intsize()Obtains the number ofParameters in theParameterList.toString()voidwriteExternal(PofWriter writer) Save the contents of a POF user type instance by writing its state using the specified PofWriter object.voidwriteExternal(DataOutput out) Save the contents of this object by storing the object's state into the passed DataOutput object.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
ResolvableParameterList
public ResolvableParameterList()Constructs an emptyResolvableParameterList. -
ResolvableParameterList
Constructs aResolvableParameterListbased on aParameterList.- Parameters:
listParameters- theParameterListfrom whichParameters should be drawn
-
ResolvableParameterList
Construct aResolvableParameterListfrom provided map. The key of the map is used as the parameter name and the corresponding value as the parameter value.- Parameters:
map- the Map of Named Parameter of type String to an Object value- Since:
- Coherence 12.2.1
-
-
Method Details
-
resolve
Obtains the specified namedParameter.- Specified by:
resolvein interfaceParameterResolver- Parameters:
sName- the name of theParameter- Returns:
- the
Parameterornullif theParametercan't be resolved
-
add
Adds aParameterto the end of theParameterListor replaces an existingParameterin theParameterList.Should a
Parameterwith the same name as the specifiedParameteralready exist in the list, the specifiedParameterwill replace the existingParameterin the list.- Specified by:
addin interfaceParameterList- Parameters:
parameter- theParameterto add or replace
-
isEmpty
public boolean isEmpty()Determines if there are anyParameters in theParameterList.- Specified by:
isEmptyin interfaceParameterList- Returns:
trueif there areParameters,falseotherwise
-
size
public int size()Obtains the number ofParameters in theParameterList.- Specified by:
sizein interfaceParameterList- Returns:
- the number of
Parameters
-
iterator
-
readExternal
Restore the contents of this object by loading the object's state from the passed DataInput object.- Specified by:
readExternalin interfaceExternalizableLite- Parameters:
in- the DataInput stream to read data from in order to restore the state of this object- Throws:
IOException- if an I/O exception occursNotActiveException- if the object is not in its initial state, and therefore cannot be deserialized into
-
writeExternal
Save the contents of this object by storing the object's state into the passed DataOutput object.- Specified by:
writeExternalin interfaceExternalizableLite- Parameters:
out- the DataOutput stream to write the state of this object to- Throws:
IOException- if an I/O exception occurs
-
readExternal
Restore the contents of a user type instance by reading its state using the specified PofReader object.- Specified by:
readExternalin interfacePortableObject- Parameters:
reader- the PofReader from which to read the object's state- Throws:
IOException- if an I/O error occurs
-
writeExternal
Save the contents of a POF user type instance by writing its state using the specified PofWriter object.- Specified by:
writeExternalin interfacePortableObject- Parameters:
writer- the PofWriter to which to write the object's state- Throws:
IOException- if an I/O error occurs
-
toString
-