KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > archive > crawler > settings > DoubleList


1 /* DoubleList
2  *
3  * $Id: DoubleList.java,v 1.1.28.1 2007/01/13 01:31:27 stack-sf Exp $
4  * Created on Dec 18, 2003
5  *
6  * Copyright (C) 2003 Internet Archive.
7  *
8  * This file is part of the Heritrix web crawler (crawler.archive.org).
9  *
10  * Heritrix is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser Public License as published by
12  * the Free Software Foundation; either version 2.1 of the License, or
13  * any later version.
14  *
15  * Heritrix is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser Public License
21  * along with Heritrix; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23  */

24 package org.archive.crawler.settings;
25
26 /** List of Double values
27  *
28  * @author John Erik Halse
29  */

30 public class DoubleList extends ListType<Double JavaDoc> {
31
32     private static final long serialVersionUID = -5793937164778552546L;
33
34     /** Creates a new DoubleList.
35      *
36      * @param name of the list.
37      * @param description of the list. This string should be suitable for using
38      * in a user interface.
39      */

40     public DoubleList(String JavaDoc name, String JavaDoc description) {
41         super(name, description);
42     }
43
44     /** Creates a new DoubleList and initializes it with the values from
45      * another DoubleList.
46      *
47      * @param name of the list.
48      * @param description of the list. This string should be suitable for using
49      * in a user interface.
50      * @param l the list from which this lists gets its initial values.
51      */

52     public DoubleList(String JavaDoc name, String JavaDoc description, DoubleList l) {
53         super(name, description);
54         addAll(l);
55     }
56
57     /** Creates a new DoubleList and initializes it with the values from
58      * an array of Doubles.
59      *
60      * @param name of the list.
61      * @param description of the list. This string should be suitable for using
62      * in a user interface.
63      * @param l the array from which this lists gets its initial values.
64      */

65     public DoubleList(String JavaDoc name, String JavaDoc description, Double JavaDoc[] l) {
66         super(name, description);
67         addAll(l);
68     }
69
70     /** Creates a new DoubleList and initializes it with the values from
71      * an double array.
72      *
73      * @param name of the list.
74      * @param description of the list. This string should be suitable for using
75      * in a user interface.
76      * @param l the array from which this lists gets its initial values.
77      */

78     public DoubleList(String JavaDoc name, String JavaDoc description, double[] l) {
79         super(name, description);
80         addAll(l);
81     }
82
83     /** Add a new {@link java.lang.Double} at the specified index to this list.
84      *
85      * @param index index at which the specified element is to be inserted.
86      * @param element the value to be added.
87      */

88     public void add(int index, Double JavaDoc element) {
89         super.add(index, element);
90     }
91
92     /** Add a new <code>double</code> at the specified index to this list.
93      *
94      * @param index index at which the specified element is to be inserted.
95      * @param element the value to be added.
96      */

97     public void add(int index, double element) {
98         super.add(index, new Double JavaDoc(element));
99     }
100
101     /** Add a new {@link java.lang.Double} at the end of this list.
102      *
103      * @param element the value to be added.
104      */

105     public void add(Double JavaDoc element) {
106         super.add(element);
107     }
108
109     /** Add a new double at the end of this list.
110      *
111      * @param element the value to be added.
112      */

113     public void add(double element) {
114         super.add(new Double JavaDoc(element));
115     }
116
117     /** Appends all of the elements in the specified list to the end of this
118      * list, in the order that they are returned by the specified lists's
119      * iterator.
120      *
121      * The behavior of this operation is unspecified if the specified
122      * collection is modified while the operation is in progress.
123      *
124      * @param l list whose elements are to be added to this list.
125      */

126     public void addAll(DoubleList l) {
127         super.addAll(l);
128     }
129
130     /** Appends all of the elements in the specified array to the end of this
131      * list, in the same order that they are in the array.
132      *
133      * @param l array whose elements are to be added to this list.
134      */

135     public void addAll(Double JavaDoc[] l) {
136         for (int i = 0; i < l.length; i++) {
137             add(l[i]);
138         }
139     }
140
141     /** Appends all of the elements in the specified array to the end of this
142      * list, in the same order that they are in the array.
143      *
144      * @param l array whose elements are to be added to this list.
145      */

146     public void addAll(double[] l) {
147         for (int i = 0; i < l.length; i++) {
148             add(l[i]);
149         }
150     }
151
152     /** Replaces the element at the specified position in this list with the
153      * specified element.
154      *
155      * @param index index at which the specified element is to be inserted.
156      * @param element element to be inserted.
157      * @return the element previously at the specified position.
158      */

159     public Double JavaDoc set(int index, Double JavaDoc element) {
160         return (Double JavaDoc) super.set(index, element);
161     }
162
163     /** Check if element is of right type for this list.
164      *
165      * If this method gets a String, it tries to convert it to
166      * the an Double before eventually throwing an exception.
167      *
168      * @param element element to check.
169      * @return element of the right type.
170      * @throws ClassCastException is thrown if the element was of wrong type
171      * and could not be converted.
172      */

173     public Double JavaDoc checkType(Object JavaDoc element) throws ClassCastException JavaDoc {
174         if (element instanceof Double JavaDoc) {
175             return (Double JavaDoc)element;
176         } else {
177             return (Double JavaDoc)
178                 SettingsHandler.StringToType(
179                     (String JavaDoc) element,
180                     SettingsHandler.DOUBLE);
181         }
182     }
183 }
184
Popular Tags