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

com.vaadin.v7.data.util.converter.StringToLongConverter Maven / Gradle / Ivy

There is a newer version: 8.27.3
Show newest version
/*
 * 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.v7.data.util.converter;

import java.text.NumberFormat;
import java.util.Locale;

/**
 * A converter that converts from {@link String} to {@link Long} and back. Uses
 * the given locale and a {@link NumberFormat} instance for formatting and
 * parsing.
 * 

* Override and overwrite {@link #getFormat(Locale)} to use a different format. *

* * @author Vaadin Ltd * @since 7.2 */ @Deprecated public class StringToLongConverter extends AbstractStringToNumberConverter { /** * Returns the format used by * {@link AbstractStringToNumberConverter#convertToPresentation(Object, Class, Locale)} and * {@link #convertToModel(String, Class, Locale)}. * * @param locale * The locale to use * @return A NumberFormat instance */ @Override protected NumberFormat getFormat(Locale locale) { if (locale == null) { locale = Locale.getDefault(); } return NumberFormat.getIntegerInstance(locale); } /* * (non-Javadoc) * * @see * com.vaadin.data.util.converter.Converter#convertToModel(java.lang.Object, * java.lang.Class, java.util.Locale) */ @Override public Long convertToModel(String value, Class targetType, Locale locale) throws ConversionException { Number n = convertToNumber(value, targetType, locale); return n == null ? null : n.longValue(); } /* * (non-Javadoc) * * @see com.vaadin.data.util.converter.Converter#getModelType() */ @Override public Class getModelType() { return Long.class; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy