All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.ui.declarative.converters.DesignToStringConverter Maven / Gradle / Ivy

There is a newer version: 8.27.3
Show newest version
/*
 * Vaadin Framework 7
 *
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.ui.declarative.converters;

import java.lang.reflect.InvocationTargetException;
import java.util.Locale;

import com.vaadin.data.util.converter.Converter;
import com.vaadin.ui.declarative.DesignAttributeHandler;

/**
 * Utility class for {@link DesignAttributeHandler} that deals with converting
 * various types to string.
 *
 * @since 7.4
 * @author Vaadin Ltd
 * @param 
 *            Type of the data being converted.
 */
public class DesignToStringConverter implements Converter {

    private final Class type;

    private final String staticMethodName;

    /**
     * A string that corresponds to how a null value is stored.
     */
    public static final String NULL_VALUE_REPRESENTATION = "";

    /**
     * Constructs the converter for a given type. Implicitly requires that a
     * static method {@code valueOf(String)} is present in the type to do the
     * conversion.
     *
     * @param type
     *            Type of values to convert.
     */
    public DesignToStringConverter(Class type) {
        this(type, "valueOf");
    }

    /**
     * Constructs the converter for a given type, giving the name of the public
     * static method that does the conversion from String.
     *
     * @param type
     *            Type to convert.
     * @param staticMethodName
     *            Method to call when converting from String to this type. This
     *            must be public and static method that returns an object of
     *            passed type.
     */
    public DesignToStringConverter(Class type,
            String staticMethodName) {
        this.type = type;
        this.staticMethodName = staticMethodName;
    }

    @Override
    public TYPE convertToModel(String value, Class targetType,
            Locale locale) throws Converter.ConversionException {
        try {
            return type.cast(type.getMethod(this.staticMethodName, String.class)
                    .invoke(null, value));
        } catch (IllegalAccessException e) {
            throw new Converter.ConversionException(e);
        } catch (IllegalArgumentException e) {
            throw new Converter.ConversionException(e);
        } catch (InvocationTargetException e) {
            throw new Converter.ConversionException(e.getCause());
        } catch (NoSuchMethodException e) {
            throw new Converter.ConversionException(e);
        } catch (SecurityException e) {
            throw new Converter.ConversionException(e);
        } catch (RuntimeException e) {
            throw new Converter.ConversionException(e);
        }
    }

    @Override
    public String convertToPresentation(TYPE value,
            Class targetType, Locale locale)
            throws Converter.ConversionException {
        if (value == null) {
            return NULL_VALUE_REPRESENTATION;
        } else {
            return value.toString();
        }
    }

    @Override
    public Class getModelType() {
        return (Class) this.type;
    }

    @Override
    public Class getPresentationType() {
        return String.class;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy