Java org.apache.commons.beanutils.converters ArrayConverter fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.beanutils.converters ArrayConverter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.beanutils.converters ArrayConverter.

The text is from its open source code.

Constructor

ArrayConverter(Class defaultType, Converter elementConverter, int defaultSize)
Construct an array Converter with the specified component Converter that returns a default array of the specified size (or null) if an error occurs.
ArrayConverter(Class defaultType, Converter elementConverter)
Construct an array Converter with the specified component Converter that throws a ConversionException if an error occurs.

Method

Objectconvert(Class type, Object value)
Convert the input object into an output object of the specified type.
voidsetAllowedChars(char[] allowedChars)
Set the allowed characters to be used for parsing a delimited String.
voidsetDelimiter(char delimiter)
Set the delimiter to be used for parsing a delimited String.
voidsetOnlyFirstToString(boolean onlyFirstToString)
Indicates whether converting to a String should create a delimited list or just convert the first value.