public class Col extends Object implements Serializable
| Constructor and Description | 
|---|
Col()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
addColTitle(int index,
           String vColTitle)  | 
void | 
addColTitle(String vColTitle)  | 
Enumeration<String> | 
enumerateColTitle()
Method enumerateColTitle. 
 | 
String[] | 
getColTitle()
Method getColTitle.Returns the contents of the collection in an Array. 
 | 
String | 
getColTitle(int index)
Method getColTitle. 
 | 
List<String> | 
getColTitleCollection()
Method getColTitleCollection.Returns a reference to 'colTitleList'. 
 | 
int | 
getColTitleCount()
Method getColTitleCount. 
 | 
Iterator<String> | 
iterateColTitle()
Method iterateColTitle. 
 | 
void | 
removeAllColTitle()  | 
boolean | 
removeColTitle(String vColTitle)
Method removeColTitle. 
 | 
String | 
removeColTitleAt(int index)
Method removeColTitleAt. 
 | 
void | 
setColTitle(int index,
           String vColTitle)  | 
void | 
setColTitle(List<String> vColTitleList)
Sets the value of 'colTitleList' by copying the given Vector. 
 | 
void | 
setColTitle(String[] vColTitleArray)  | 
void | 
setColTitleCollection(List<String> colTitleList)
Deprecated.   
 | 
public void addColTitle(String vColTitle) throws IndexOutOfBoundsException
vColTitle - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic void addColTitle(int index,
                        String vColTitle)
                 throws IndexOutOfBoundsException
index - vColTitle - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic Enumeration<String> enumerateColTitle()
public String getColTitle(int index) throws IndexOutOfBoundsException
index - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic String[] getColTitle()
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<String> getColTitleCollection()
public int getColTitleCount()
public Iterator<String> iterateColTitle()
public void removeAllColTitle()
public boolean removeColTitle(String vColTitle)
vColTitle - public String removeColTitleAt(int index)
index - public void setColTitle(int index,
                        String vColTitle)
                 throws IndexOutOfBoundsException
index - vColTitle - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic void setColTitle(String[] vColTitleArray)
vColTitleArray - public void setColTitle(List<String> vColTitleList)
vColTitleList - the Vector to copy.Copyright © 2021. All rights reserved.