Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


com.tangosol.coherence.config
Interface ParameterList

All Superinterfaces:
java.lang.Iterable
All Known Implementing Classes:
ResolvableParameterList, SimpleParameterList

public interface ParameterList
extends java.lang.Iterable

An ParameterList is a strictly ordered and Iterable collection of Parameters.

Since:
Coherence 12.1.2
Author:
bo 2011.09.14
See Also:
Parameter, ParameterResolver

Method Summary
 void add(com.tangosol.config.expression.Parameter parameter)
          Adds a Parameter to the end of the ParameterList or replaces an existing Parameter in the ParameterList.
 boolean isEmpty()
          Determines if there are any Parameters in the ParameterList.
 int size()
          Obtains the number of Parameters in the ParameterList.

 

Methods inherited from interface java.lang.Iterable
iterator

 

Method Detail

isEmpty

boolean isEmpty()
Determines if there are any Parameters in the ParameterList.
Returns:
true if there are Parameters, false otherwise

size

int size()
Obtains the number of Parameters in the ParameterList.
Returns:
the number of Parameters

add

void add(com.tangosol.config.expression.Parameter parameter)
Adds a Parameter to the end of the ParameterList or replaces an existing Parameter in the ParameterList.

Should a Parameter with the same name as the specified Parameter already exist in the list, the specified Parameter will replace the existing Parameter in the list.

Parameters:
parameter - the Parameter to add or replace

Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.