Example usage for org.springframework.core.convert.converter ConverterFactory interface-usage

List of usage examples for org.springframework.core.convert.converter ConverterFactory interface-usage

Introduction

In this page you can find the example usage for org.springframework.core.convert.converter ConverterFactory interface-usage.

Usage

From source file org.openmrs.module.kenyaemr.converter.StringToEnumConverterFactory.java

import org.springframework.stereotype.Component;

/**
 * A factory for all string to enum converters
 */
@Component

From source file org.jnap.core.bean.converter.PersistentEnumConverterFactory.java

/**
 * @author Daniel Rochetti
 *
 */
public class PersistentEnumConverterFactory implements ConverterFactory<String, Enum> {

From source file com.holyeye.demo.commons.converter.StringToPersistentEnumConverterFactory.java

/**
 * PersistentEnum 
 */
@Slf4j
@SuppressWarnings({ "unchecked", "rawtypes" })
final class StringToPersistentEnumConverterFactory implements ConverterFactory<String, Enum> {

From source file com.athena.peacock.controller.web.common.converter.StringToNumberConverterFactory.java

/**
 * <pre>
 *  (view)? ? number ? ?(''?) 0  ??. 
 * </pre>
 * @author Bong-Jin Kwon
 * @version 1.0

From source file com.basicservice.dto.conversionFactories.StringToValidatedStringConverterFactory.java

/**
 * A converter class used by Spring to convert Strings to ValidatedStrings
 * Used when a ValidatedString is used in a controller and the value passed in 
 * is a String 
 */

From source file com.basicservice.dto.conversionFactories.StringWrapperToStringConverterFactory.java

/**
 * A converter class used by Spring to convert StringWrapper fields to Strings
 * Used when writing beans with StringWrapper to the output stream (converts to String) 
 */

public class StringWrapperToStringConverterFactory implements ConverterFactory<StringWrapper, String> {

From source file com.athena.dolly.web.common.converter.StringToNumberConverterFactory.java

/**
 * <pre>
 *  (view)? ? number ? ?(''?) 0  ??. 
 * </pre>
 * @author Ji-Woong Choi(jchoi@osci.kr)
 * @version 1.0

From source file org.jhk.pulsing.web.serialization.StringToAvroRecordFactory.java

/**
 * @author Ji Kim
 */
public final class StringToAvroRecordFactory implements ConverterFactory<String, SpecificRecord> {

    private static final Logger _LOGGER = LoggerFactory.getLogger(StringToAvroRecordFactory.class);