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
AResolvableParameterList
is aParameterList
implementation that additionally supports name-basedParameter
resolution as defined by theParameterResolver
interface.- Since:
- Coherence 12.1.2
- Author:
- bo 2011.06.22
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResolvableParameterList()
Constructs an emptyResolvableParameterList
.ResolvableParameterList(ParameterList listParameters)
Constructs aResolvableParameterList
based on aParameterList
.ResolvableParameterList(Map map)
Construct aResolvableParameterList
from provided map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Parameter parameter)
Adds aParameter
to the end of theParameterList
or replaces an existingParameter
in theParameterList
.boolean
isEmpty()
Determines if there are anyParameter
s in theParameterList
.Iterator<Parameter>
iterator()
void
readExternal(PofReader reader)
Restore the contents of a user type instance by reading its state using the specified PofReader object.void
readExternal(DataInput in)
Restore the contents of this object by loading the object's state from the passed DataInput object.Parameter
resolve(String sName)
Obtains the specified namedParameter
.int
size()
Obtains the number ofParameter
s in theParameterList
.String
toString()
void
writeExternal(PofWriter writer)
Save the contents of a POF user type instance by writing its state using the specified PofWriter object.void
writeExternal(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, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
ResolvableParameterList
public ResolvableParameterList()
Constructs an emptyResolvableParameterList
.
-
ResolvableParameterList
public ResolvableParameterList(ParameterList listParameters)
Constructs aResolvableParameterList
based on aParameterList
.- Parameters:
listParameters
- theParameterList
from whichParameter
s should be drawn
-
ResolvableParameterList
public ResolvableParameterList(Map map)
Construct aResolvableParameterList
from 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 Detail
-
resolve
public Parameter resolve(String sName)
Obtains the specified namedParameter
.- Specified by:
resolve
in interfaceParameterResolver
- Parameters:
sName
- the name of theParameter
- Returns:
- the
Parameter
ornull
if theParameter
can't be resolved
-
add
public void add(Parameter parameter)
Adds aParameter
to the end of theParameterList
or replaces an existingParameter
in theParameterList
.Should a
Parameter
with the same name as the specifiedParameter
already exist in the list, the specifiedParameter
will replace the existingParameter
in the list.- Specified by:
add
in interfaceParameterList
- Parameters:
parameter
- theParameter
to add or replace
-
isEmpty
public boolean isEmpty()
Determines if there are anyParameter
s in theParameterList
.- Specified by:
isEmpty
in interfaceParameterList
- Returns:
true
if there areParameter
s,false
otherwise
-
size
public int size()
Obtains the number ofParameter
s in theParameterList
.- Specified by:
size
in interfaceParameterList
- Returns:
- the number of
Parameter
s
-
readExternal
public void readExternal(DataInput in) throws IOException
Restore the contents of this object by loading the object's state from the passed DataInput object.- Specified by:
readExternal
in 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
public void writeExternal(DataOutput out) throws IOException
Save the contents of this object by storing the object's state into the passed DataOutput object.- Specified by:
writeExternal
in interfaceExternalizableLite
- Parameters:
out
- the DataOutput stream to write the state of this object to- Throws:
IOException
- if an I/O exception occurs
-
readExternal
public void readExternal(PofReader reader) throws IOException
Restore the contents of a user type instance by reading its state using the specified PofReader object.- Specified by:
readExternal
in interfacePortableObject
- Parameters:
reader
- the PofReader from which to read the object's state- Throws:
IOException
- if an I/O error occurs
-
writeExternal
public void writeExternal(PofWriter writer) throws IOException
Save the contents of a POF user type instance by writing its state using the specified PofWriter object.- Specified by:
writeExternal
in interfacePortableObject
- Parameters:
writer
- the PofWriter to which to write the object's state- Throws:
IOException
- if an I/O error occurs
-
-