Class BigIntegerConverter
- java.lang.Object
-
- org.apache.wicket.util.convert.converter.AbstractConverter<N>
-
- org.apache.wicket.util.convert.converter.AbstractNumberConverter<I>
-
- org.apache.wicket.util.convert.converter.AbstractIntegerConverter<java.math.BigInteger>
-
- org.apache.wicket.util.convert.converter.BigIntegerConverter
-
- All Implemented Interfaces:
java.io.Serializable,IConverter<java.math.BigInteger>,IClusterable
public class BigIntegerConverter extends AbstractIntegerConverter<java.math.BigInteger>
BigInteger converter seeIConverter- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BigIntegerConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigIntegerconvertToObject(java.lang.String value, java.util.Locale locale)Converts the givenStringvalueprotected java.lang.Class<java.math.BigInteger>getTargetType()-
Methods inherited from class org.apache.wicket.util.convert.converter.AbstractIntegerConverter
newNumberFormat
-
Methods inherited from class org.apache.wicket.util.convert.converter.AbstractNumberConverter
convertToString, getNumberFormat, parse
-
Methods inherited from class org.apache.wicket.util.convert.converter.AbstractConverter
newConversionException, parse
-
-
-
-
Method Detail
-
getTargetType
protected java.lang.Class<java.math.BigInteger> getTargetType()
- Specified by:
getTargetTypein classAbstractConverter<java.math.BigInteger>- Returns:
- The target type of this type converter
-
convertToObject
public java.math.BigInteger convertToObject(java.lang.String value, java.util.Locale locale)Description copied from interface:IConverterConverts the givenStringvalue- Parameters:
value- The string value to convertlocale- The locale used to convert the value- Returns:
- The converted value
-
-