Package com.tangosol.coherence.config
Class SimpleParameterList
java.lang.Object
com.tangosol.coherence.config.SimpleParameterList
- All Implemented Interfaces:
ParameterList
,ExternalizableLite
,PortableObject
,Serializable
,Iterable<Parameter>
public class SimpleParameterList
extends Object
implements ParameterList, ExternalizableLite, PortableObject
A
SimpleParameterList
is a simple implementation of ParameterList
.- Since:
- Coherence 12.1.2
- Author:
- bo 2012.02.02
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an emptySimpleParameterList
.SimpleParameterList
(ParameterList listParameters) Constructs aSimpleParameterList
based on aParameterList
.SimpleParameterList
(Object... aObjects) Constructs aSimpleParameterList
based on the specified array of objects, each object becoming it's ownParameter
in the resulting list. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds aParameter
to the end of theParameterList
or replaces an existingParameter
in theParameterList
.void
Adds the specified object to the end of theParameterList
as an anonymousParameter
.boolean
isEmpty()
Determines if there are anyParameter
s in theParameterList
.iterator()
void
readExternal
(PofReader reader) Restore the contents of a user type instance by reading its state using the specified PofReader object.void
Restore the contents of this object by loading the object's state from the passed DataInput object.int
size()
Obtains the number ofParameter
s in theParameterList
.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, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
SimpleParameterList
public SimpleParameterList()Constructs an emptySimpleParameterList
. -
SimpleParameterList
Constructs aSimpleParameterList
based on the specified array of objects, each object becoming it's ownParameter
in the resulting list.- Parameters:
aObjects
- the objects to be considered as parameters
-
SimpleParameterList
Constructs aSimpleParameterList
based on aParameterList
.- Parameters:
listParameters
- theParameterList
from whichParameter
s should be drawn
-
-
Method Details
-
add
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
-
iterator
-
add
Adds the specified object to the end of theParameterList
as an anonymousParameter
.- Parameters:
o
- the object to add as aParameter
-
readExternal
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 occurs
-
writeExternal
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
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
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
-