|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.management.Attribute
org.archive.crawler.settings.Type
org.archive.crawler.settings.ListType<java.lang.Float>
org.archive.crawler.settings.FloatList
public class FloatList
List of Float values
| Constructor Summary | |
|---|---|
FloatList(java.lang.String name,
java.lang.String description)
Creates a new FloatList. |
|
FloatList(java.lang.String name,
java.lang.String description,
float[] l)
Creates a new FloatList and initializes it with the values from an float array. |
|
FloatList(java.lang.String name,
java.lang.String description,
java.lang.Float[] l)
Creates a new FloatList and initializes it with the values from an array of Floats. |
|
FloatList(java.lang.String name,
java.lang.String description,
FloatList l)
Creates a new FloatList and initializes it with the values from another FloatList. |
|
| Method Summary | |
|---|---|
void |
add(float element)
Add a new float at the end of this list. |
void |
add(java.lang.Float element)
Add a new Float at the end of this list. |
void |
add(int index,
float element)
Add a new float at the specified index to this list. |
void |
add(int index,
java.lang.Float element)
Add a new Float at the specified index to this list. |
void |
addAll(float[] l)
Appends all of the elements in the specified array to the end of this list, in the same order that they are in the array. |
void |
addAll(java.lang.Float[] l)
Appends all of the elements in the specified array to the end of this list, in the same order that they are in the array. |
void |
addAll(FloatList l)
Appends all of the elements in the specified list to the end of this list, in the order that they are returned by the specified lists's iterator. |
java.lang.Float |
checkType(java.lang.Object element)
Check if element is of right type for this list. |
java.lang.Float |
set(int index,
java.lang.Float element)
Replaces the element at the specified position in this list with the specified element. |
| Methods inherited from class org.archive.crawler.settings.ListType |
|---|
add, add, addAll, addAll, addAll, clear, contains, containsAll, get, getDefaultValue, getDescription, getLegalValues, getValue, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray, typesafe |
| Methods inherited from class org.archive.crawler.settings.Type |
|---|
addConstraint, equals, getConstraints, getLegalValueType, isExpertSetting, isOverrideable, isTransient, setExpertSetting, setLegalValueType, setOverrideable, setTransient |
| Methods inherited from class javax.management.Attribute |
|---|
getName |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
equals, hashCode |
| Constructor Detail |
|---|
public FloatList(java.lang.String name,
java.lang.String description)
name - of the list.description - of the list. This string should be suitable for using
in a user interface.
public FloatList(java.lang.String name,
java.lang.String description,
FloatList l)
name - of the list.description - of the list. This string should be suitable for using
in a user interface.l - the list from which this lists gets its initial values.
public FloatList(java.lang.String name,
java.lang.String description,
java.lang.Float[] l)
name - of the list.description - of the list. This string should be suitable for using
in a user interface.l - the array from which this lists gets its initial values.
public FloatList(java.lang.String name,
java.lang.String description,
float[] l)
name - of the list.description - of the list. This string should be suitable for using
in a user interface.l - the array from which this lists gets its initial values.| Method Detail |
|---|
public void add(int index,
java.lang.Float element)
Float at the specified index to this list.
index - index at which the specified element is to be inserted.element - the value to be added.
public void add(int index,
float element)
float at the specified index to this list.
index - index at which the specified element is to be inserted.element - the value to be added.public void add(java.lang.Float element)
Float at the end of this list.
element - the value to be added.public void add(float element)
element - the value to be added.public void addAll(FloatList l)
l - list whose elements are to be added to this list.public void addAll(java.lang.Float[] l)
l - array whose elements are to be added to this list.public void addAll(float[] l)
l - array whose elements are to be added to this list.
public java.lang.Float set(int index,
java.lang.Float element)
index - index at which the specified element is to be inserted.element - element to be inserted.
public java.lang.Float checkType(java.lang.Object element)
throws java.lang.ClassCastException
checkType in class ListType<java.lang.Float>element - element to check.
java.lang.ClassCastException - is thrown if the element was of wrong type
and could not be converted.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||