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

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

Introduction

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

Usage

From source file net.sf.sze.frontend.converter.KlasseConverter.java

/**
 * Converter for {@link Klasse} to String.
 *
 */
public class KlasseConverter implements Converter<Klasse, String> {

From source file net.sf.sze.frontend.converter.SchulfachConverter.java

/**
 * Converter for {@link Schulfach} to String.
 *
 */
public class SchulfachConverter implements Converter<Schulfach, String> {

From source file net.sf.sze.frontend.converter.ZeugnisFormularConverter.java

/**
 * Converter for {@link ZeugnisFormular} to String.
 *
 */
public class ZeugnisFormularConverter implements Converter<ZeugnisFormular, String> {

From source file org.duracloud.account.config.StringTrimmerConverter.java

public class StringTrimmerConverter implements Converter<String, String> {

    @Override
    public String convert(String source) {
        if (source == null) {
            return null;

From source file converters.RoleStringConverter.java

/**
 *
 * @author sergio
 */
@Component
public class RoleStringConverter implements Converter<Role, String> {

From source file com.test.swing1.mavenspringwebapplication.converters.BierConverter.java

/**
 *
 * @author thomas
 */
public class BierConverter implements Converter<Bier, String> {

From source file com.mycompany.testeproject.serialization.DateToStringConverter.java

/**
 *
 * @author enomurak
 */
public class DateToStringConverter implements Converter<Date, String> {

From source file com.test.swing1.mavenspringwebapplication.converters.CategorieConverter.java

/**
 *
 * @author thomas
 */
public class CategorieConverter implements Converter<String, BierCategorie> {

From source file converter.BookConverter.java

/**
 *
 * @author Sander_2
 */
public class BookConverter implements Converter<Long, Book> {

From source file converter.PlayerConverter.java

/**
 *
 * @author wouteradriaens
 */
public class PlayerConverter implements Converter<String, Player> {