public class AmiParameterList
extends java.util.Vector
Constructor and Description |
---|
AmiParameterList()
Create a new instance object of class AmiParameterList
|
AmiParameterList(int size)
Create a new instance object of class AmiParameterList
|
Modifier and Type | Method and Description |
---|---|
void |
add(AmiParameter param)
Add an AmiParameter for the specified arguments.
|
java.lang.Boolean |
getBoolean(int index)
Gets the Boolean value of the AMI parameter at the given index.
|
java.lang.Byte |
getByte(int index)
Gets the Byte value of the AMI parameter at the given index.
|
java.lang.Double |
getDouble(int index)
Gets the Double value of the AMI parameter at the given index.
|
java.lang.Float |
getFloat(int index)
Gets the Float value of the AMI parameter at the given index.
|
java.lang.Integer |
getInteger(int index)
Gets the Integer value of the AMI parameter at the given index.
|
java.lang.Long |
getLong(int index)
Gets the Long value of the AMI parameter at the given index.
|
java.lang.Object |
getObject(int index)
Gets the value of the AMI parameter at the given index.
|
AmiParameter |
getParameter(int index)
Gets the AMI Parameter object at the given index.
|
java.lang.Short |
getShort(int index)
Gets the Short value of the AMI parameter at the given index.
|
java.lang.String |
getString(int index)
Gets the String value of the AMI parameter at the given index.
|
add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, forEach, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, iterator, lastElement, lastIndexOf, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeIf, replaceAll, retainAll, set, setElementAt, setSize, size, sort, spliterator, subList, toArray, toArray, toString, trimToSize
public AmiParameterList()
public AmiParameterList(int size)
size
- set the initialize size of the listpublic void add(AmiParameter param)
parram
- AMI parameter to add.public AmiParameter getParameter(int index)
index
- Index into the AMI parameter list.
Exception is thrown if index is out of range.
public java.lang.Object getObject(int index)
index
- Index into the AMI parameter list.
The object value of the AMI parameter at the given index is returned.
Exception is thrown if index is out of range.
public java.lang.String getString(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Boolean getBoolean(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Byte getByte(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Short getShort(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Integer getInteger(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Long getLong(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Float getFloat(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
public java.lang.Double getDouble(int index)
index
- Index into the AMI parameter list.Exception is thrown if index is out of range.
Copyright © 2000-2019 TIBCO Inc. All Rights Reserved.