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

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

Introduction

In this page you can find the example usage for org.apache.commons.beanutils.converters ByteConverter 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.ByteCalculator.java

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