public class DropDownItemCollection
extends java.lang.Object
implements java.lang.Iterable
FormField,
FormField.getDropDownItems()| Modifier and Type | Method and Description |
|---|---|
int |
add(java.lang.String value) |
void |
clear()
Removes all elements from the collection.
|
boolean |
contains(java.lang.String value)
Determines whether the collection contains the specified value.
|
java.lang.String |
get(int index)
Gets the element at the specified index.
|
int |
getCount()
Gets the number of elements contained in the collection.
|
int |
indexOf(java.lang.String value)
Returns the zero-based index of the specified value in the collection.
|
void |
insert(int index,
java.lang.String value)
Inserts a string into the collection at the specified index.
|
boolean |
isInheritedComplexAttr() |
java.util.Iterator |
iterator()
Returns an iterator object that can be used to iterate over all items in the collection.
|
void |
remove(java.lang.String name)
Removes the specified value from the collection.
|
void |
removeAt(int index)
Removes a value at the specified index.
|
void |
set(int index,
java.lang.String value)
Sets the element at the specified index.
|
public int getCount()
public java.lang.String get(int index)
public void set(int index,
java.lang.String value)
value - The element at the specified index.public java.util.Iterator iterator()
iterator in interface java.lang.Iterablepublic int add(java.lang.String value)
public boolean contains(java.lang.String value)
value - Case-sensitive value to locate.public int indexOf(java.lang.String value)
value - The case-sensitive value to locate.public void insert(int index,
java.lang.String value)
index - The zero-based index at which value is inserted.value - The string to insert.public void remove(java.lang.String name)
name - The case-sensitive value to remove.public void removeAt(int index)
index - The zero based index.public void clear()
public boolean isInheritedComplexAttr()