Example usage for org.apache.commons.beanutils Converter interface-usage

List of usage examples for org.apache.commons.beanutils Converter interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.beanutils Converter interface-usage.

Usage

From source file com.agnie.useradmin.persistance.server.common.digester.AuthLevelConvert.java

public class AuthLevelConvert implements Converter {

    @SuppressWarnings("rawtypes")
    @Override
    public Object convert(Class type, Object value) {
        if (value == null)

From source file com.rodaxsoft.junit.mailgun.MemberDetailsConverter.java

/**
 * Member traits converter class
 * @author John Boyer
 * @version 2015-07-27
 * @since 0.2
 */

From source file org.initialize4j.convert.NullConverter.java

/**
 * {@link Converter} implementation used as a NullObject which does not really a
 * conversion but throws a {@link RuntimeException} to indicate a missing
 * configuration.
 * 
 * @author <a href="hillger.t@gmail.com">hillger.t</a>

From source file io.github.moosbusch.permagon.configuration.builder.converter.JavaFXConverter.java

/**
 *
 * @author Gunnar Kappei
 */
public interface JavaFXConverter<T extends Object> extends Converter {

From source file org.dozer.converters.IntegerConverter.java

/**
 * Internal class for converting Supported Data Types --> Integer. Only intended for internal use.
 * 
 * @author tierney.matt
 */
public class IntegerConverter implements Converter {

From source file org.dozer.converters.LongConverter.java

/**
 * Internal class for converting Supported Data Types --> Long. Only intended for internal use.
 * 
 * @author tierney.matt
 */
public class LongConverter implements Converter {

From source file org.onebusaway.csv_entities.schema.DefaultConverter.java

public class DefaultConverter implements Converter {

    @Override
    public Object convert(@SuppressWarnings("rawtypes") Class type, Object value) {
        if (value == null)
            return "";

From source file com.teamsun.framework.util.DateConverter.java

/**
 * DateConverter.java
 * * <dd>Description: 
 * This class is converts a java.util.Date to a String
 * and a String to a java.util.Date. It is used by
 * BeanUtils when copying properties.  Registered

From source file net.mojodna.searchable.converter.UUIDConverter.java

/**
 * A converter for UUIDs.
 * 
 * @author Seth Fitzsimmons
 */
public class UUIDConverter implements Converter {

From source file org.dozer.converters.ByteConverter.java

/**
 * Internal class for converting Supported Data Types to Byte. Only intended for internal use.
 *
 * @author siarhei.krukau
 */
public class ByteConverter implements Converter {