public class HandlerClass extends Object implements Serializable
Constructor and Description |
---|
HandlerClass() |
Modifier and Type | Method and Description |
---|---|
void |
addInitParams(InitParams vInitParams) |
void |
addInitParams(int index,
InitParams vInitParams) |
Enumeration<InitParams> |
enumerateInitParams()
Method enumerateInitParams.
|
boolean |
equals(Object obj)
Overrides the Object.equals method.
|
InitParams[] |
getInitParams()
Method getInitParams.Returns the contents of the collection in an Array.
|
InitParams |
getInitParams(int index)
Method getInitParams.
|
List<InitParams> |
getInitParamsCollection()
Method getInitParamsCollection.Returns a reference to 'initParamsList'.
|
int |
getInitParamsCount()
Method getInitParamsCount.
|
String |
getName()
Returns the value of field 'name'.
|
int |
hashCode()
Method hashCode.
|
Iterator<InitParams> |
iterateInitParams()
Method iterateInitParams.
|
void |
removeAllInitParams() |
boolean |
removeInitParams(InitParams vInitParams)
Method removeInitParams.
|
InitParams |
removeInitParamsAt(int index)
Method removeInitParamsAt.
|
void |
setInitParams(InitParams[] vInitParamsArray) |
void |
setInitParams(int index,
InitParams vInitParams) |
void |
setInitParams(List<InitParams> vInitParamsList)
Sets the value of 'initParamsList' by copying the given Vector.
|
void |
setInitParamsCollection(List<InitParams> initParamsList)
Deprecated.
|
void |
setName(String name)
Sets the value of field 'name'.
|
public void addInitParams(InitParams vInitParams) throws IndexOutOfBoundsException
vInitParams
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic void addInitParams(int index, InitParams vInitParams) throws IndexOutOfBoundsException
index
- vInitParams
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic Enumeration<InitParams> enumerateInitParams()
public boolean equals(Object obj)
public InitParams getInitParams(int index) throws IndexOutOfBoundsException
index
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic InitParams[] getInitParams()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public List<InitParams> getInitParamsCollection()
public int getInitParamsCount()
public String getName()
public int hashCode()
public Iterator<InitParams> iterateInitParams()
public void removeAllInitParams()
public boolean removeInitParams(InitParams vInitParams)
vInitParams
- public InitParams removeInitParamsAt(int index)
index
- public void setInitParams(int index, InitParams vInitParams) throws IndexOutOfBoundsException
index
- vInitParams
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic void setInitParams(InitParams[] vInitParamsArray)
vInitParamsArray
- public void setInitParams(List<InitParams> vInitParamsList)
vInitParamsList
- the Vector to copy.public void setInitParamsCollection(List<InitParams> initParamsList)
initParamsList
- the Vector to set.public void setName(String name)
name
- the value of field 'name'.Copyright © 2017. All rights reserved.