Java org.apache.wicket.util.string StringList fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket.util.string StringList fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket.util.string StringList.

The text is from its open source code.

Constructor

StringList()
Constructor.

Method

voidadd(final String string)
Adds a string to the back of this list.
voidadd(final StringValue value)
Adds a string value to this list as a string.
Stringget(final int index)
Gets the string at the given index.
Stringjoin()
Joins this sequence of strings using a comma separator.
intsize()
StringListtokenize(final String string, final String delimiters)
Extracts tokens from a delimited string.
StringListvalueOf(final Collection collection)
Converts a collection of objects into a list of string values by using the conversion methods of the StringValue class.
StringListvalueOf(final Object[] objects)
Converts an array of objects into a list of strings by using the object to string conversion method of the StringValue class.
StringListvalueOf(final String string)
Returns a string list with just one string in it.
StringListvalueOf(final String[] array)
Converts a string array to a string list.