March 2005
Intermediate to advanced
1254 pages
104h 21m
English
DOMStringList
This
Level 3 interface represents a
fixed-size, read-only list of
strings.
getLength( ) returns the length of the list, and
item( ) returns the String at
the specified index. contains( ) tests whether the
specified String is contained in the list. An
object of this type is returned by
DOMConfiguration.getParameterNames( ).
public interface DOMStringList { // Public Instance Methods boolean contains(String str); int getLength( ); String item(int index); }
DOMConfiguration.getParameterNames( )