Example usage for org.apache.commons.beanutils.converters ShortConverter convert

List of usage examples for org.apache.commons.beanutils.converters ShortConverter convert

Introduction

In this page you can find the example usage for org.apache.commons.beanutils.converters ShortConverter convert.

Prototype

public Object convert(Class type, Object value) 

Source Link

Document

Convert the specified input object into an output object of the specified type.

Usage

From source file:jp.co.acroquest.endosnipe.report.converter.util.calc.ShortCalculator.java

public Object immediate(String str) {
    ShortConverter converter = new ShortConverter();
    return converter.convert(Short.class, str);
}