public class DropDownItemCollection
extends java.lang.Object
implements java.lang.Iterable
To learn more, visit the Working with Fields documentation article.
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
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()
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
public java.lang.String get(int index)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
public void set(int index,
java.lang.String value)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
value - The element at the specified index.public java.util.Iterator iterator()
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
iterator in interface java.lang.Iterablepublic int add(java.lang.String value)
public boolean contains(java.lang.String value)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
value - Case-sensitive value to locate.true if the item is found in the collection; otherwise, false.public int indexOf(java.lang.String value)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
value - The case-sensitive value to locate.public void insert(int index,
java.lang.String value)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
index - The zero-based index at which value is inserted.value - The string to insert.public void remove(java.lang.String name)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
name - The case-sensitive value to remove.public void removeAt(int index)
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
index - The zero based index.public void clear()
Examples:
Shows how to insert a combo box field, and edit the elements in its item collection.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a combo box, and then verify its collection of drop-down items.
// In Microsoft Word, the user will click the combo box,
// and then choose one of the items of text in the collection to display.
String[] items = {"One", "Two", "Three"};
FormField comboBoxField = builder.insertComboBox("DropDown", items, 0);
DropDownItemCollection dropDownItems = comboBoxField.getDropDownItems();
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertEquals("One", dropDownItems.get(0));
Assert.assertEquals(1, dropDownItems.indexOf("Two"));
Assert.assertTrue(dropDownItems.contains("Three"));
// There are two ways of adding a new item to an existing collection of drop-down box items.
// 1 - Append an item to the end of the collection:
dropDownItems.add("Four");
// 2 - Insert an item before another item at a specified index:
dropDownItems.insert(3, "Three and a half");
Assert.assertEquals(5, dropDownItems.getCount());
// Iterate over the collection and print every element.
Iterator<String> dropDownCollectionEnumerator = dropDownItems.iterator();
while (dropDownCollectionEnumerator.hasNext())
System.out.println(dropDownCollectionEnumerator.next());
// There are two ways of removing elements from a collection of drop-down items.
// 1 - Remove an item with contents equal to the passed string:
dropDownItems.remove("Four");
// 2 - Remove an item at an index:
dropDownItems.removeAt(3);
Assert.assertEquals(3, dropDownItems.getCount());
Assert.assertFalse(dropDownItems.contains("Three and a half"));
Assert.assertFalse(dropDownItems.contains("Four"));
doc.save(getArtifactsDir() + "FormFields.DropDownItemCollection.html");
// Empty the whole collection of drop-down items.
dropDownItems.clear();
public boolean isInheritedComplexAttr()