public class Maskelement extends Object implements Serializable
| Constructor and Description | 
|---|
Maskelement()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
addMevalue(int index,
          String vMevalue)  | 
void | 
addMevalue(String vMevalue)  | 
static Maskelement | 
copyFrom(IMaskElement copy)  | 
Enumeration<String> | 
enumerateMevalue()
Method enumerateMevalue. 
 | 
String | 
getMename()
Returns the value of field 'mename'. 
 | 
String[] | 
getMevalue()
Method getMevalue.Returns the contents of the collection in
 an Array. 
 | 
String | 
getMevalue(int index)
Method getMevalue. 
 | 
List<String> | 
getMevalueCollection()
Method getMevalueCollection.Returns a reference to
 '_mevalueList'. 
 | 
int | 
getMevalueCount()
Method getMevalueCount. 
 | 
Iterator<String> | 
iterateMevalue()
Method iterateMevalue. 
 | 
void | 
removeAllMevalue()  | 
boolean | 
removeMevalue(String vMevalue)
Method removeMevalue. 
 | 
String | 
removeMevalueAt(int index)
Method removeMevalueAt. 
 | 
void | 
setMename(String mename)
Sets the value of field 'mename'. 
 | 
void | 
setMevalue(int index,
          String vMevalue)  | 
void | 
setMevalue(List<String> vMevalueList)
Sets the value of '_mevalueList' by copying the given
 Vector. 
 | 
void | 
setMevalue(String[] vMevalueArray)  | 
void | 
setMevalueCollection(List<String> mevalueList)
Deprecated.   
 | 
String | 
toString()  | 
public static Maskelement copyFrom(IMaskElement copy)
public void addMevalue(String vMevalue) throws IndexOutOfBoundsException
vMevalue - IndexOutOfBoundsException - if the index
 given is outside the bounds of the collectionpublic void addMevalue(int index,
                       String vMevalue)
                throws IndexOutOfBoundsException
index - vMevalue - IndexOutOfBoundsException - if the index
 given is outside the bounds of the collectionpublic Enumeration<String> enumerateMevalue()
public String getMename()
public String getMevalue(int index) throws IndexOutOfBoundsException
index - IndexOutOfBoundsException - if the index
 given is outside the bounds of the collectionpublic String[] getMevalue()
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> getMevalueCollection()
public int getMevalueCount()
public Iterator<String> iterateMevalue()
public void removeAllMevalue()
public boolean removeMevalue(String vMevalue)
vMevalue - public String removeMevalueAt(int index)
index - public void setMename(String mename)
mename - the value of field 'mename'.public void setMevalue(int index,
                       String vMevalue)
                throws IndexOutOfBoundsException
index - vMevalue - IndexOutOfBoundsException - if the index
 given is outside the bounds of the collectionpublic void setMevalue(String[] vMevalueArray)
vMevalueArray - public void setMevalue(List<String> vMevalueList)
vMevalueList - the Vector to copy.public void setMevalueCollection(List<String> mevalueList)
mevalueList - the Vector to set.Copyright © 2021. All rights reserved.