com.vaadin.v7.ui.renderers.NumberRenderer Maven / Gradle / Ivy
Show all versions of vaadin-compatibility-server Show documentation
/*
* 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.ui.renderers;
import java.text.NumberFormat;
import java.util.Locale;
import com.vaadin.v7.ui.Grid.AbstractRenderer;
import elemental.json.JsonValue;
/**
* A renderer for presenting number values.
*
* @since 7.4
* @author Vaadin Ltd
*/
@Deprecated
public class NumberRenderer extends AbstractRenderer {
private final Locale locale;
private final NumberFormat numberFormat;
private final String formatString;
/**
* Creates a new number renderer.
*
* The renderer is configured to render with the number's natural string
* representation in the default locale.
*
*/
public NumberRenderer() {
this(Locale.getDefault());
}
/**
* Creates a new number renderer.
*
* The renderer is configured to render the number as defined with the given
* number format.
*
*
* @param numberFormat
* the number format with which to display numbers
* @throws IllegalArgumentException
* if {@code numberFormat} is {@code null}
*/
public NumberRenderer(NumberFormat numberFormat) {
this(numberFormat, "");
}
/**
* Creates a new number renderer.
*
* The renderer is configured to render the number as defined with the given
* number format.
*
*
* @param numberFormat
* the number format with which to display numbers
* @param nullRepresentation
* the textual representation of {@code null} value
* @throws IllegalArgumentException
* if {@code numberFormat} is {@code null}
*/
public NumberRenderer(NumberFormat numberFormat, String nullRepresentation)
throws IllegalArgumentException {
super(Number.class, nullRepresentation);
if (numberFormat == null) {
throw new IllegalArgumentException("Number format may not be null");
}
locale = null;
this.numberFormat = numberFormat;
formatString = null;
}
/**
* Creates a new number renderer.
*
* The renderer is configured to render with the number's natural string
* representation in the given locale.
*
*
* @param locale
* the locale in which to display numbers
* @throws IllegalArgumentException
* if {@code locale} is {@code null}
*/
public NumberRenderer(Locale locale) throws IllegalArgumentException {
this("%s", locale);
}
/**
* Creates a new number renderer.
*
* The renderer is configured to render with the number's natural string
* representation in the given locale.
*
*
* @param formatString
* the format string with which to format the number
* @param locale
* the locale in which to display numbers
* @throws IllegalArgumentException
* if {@code locale} is {@code null}
*/
public NumberRenderer(String formatString, Locale locale)
throws IllegalArgumentException {
// This will call #toString() during formatting
this(formatString, locale, "");
}
/**
* Creates a new number renderer.
*
* The renderer is configured to render with the given format string in the
* default locale.
*
*
* @param formatString
* the format string with which to format the number
* @throws IllegalArgumentException
* if {@code formatString} is {@code null}
* @see Format
* String Syntax
*/
public NumberRenderer(String formatString) throws IllegalArgumentException {
this(formatString, Locale.getDefault(), "");
}
/**
* Creates a new number renderer.
*
* The renderer is configured to render with the given format string in the
* given locale.
*
*
* @param formatString
* the format string with which to format the number
* @param locale
* the locale in which to present numbers
* @throws IllegalArgumentException
* if either argument is {@code null}
* @see Format
* String Syntax
*/
public NumberRenderer(String formatString, Locale locale,
String nullRepresentation) {
super(Number.class, nullRepresentation);
if (formatString == null) {
throw new IllegalArgumentException("Format string may not be null");
}
if (locale == null) {
throw new IllegalArgumentException("Locale may not be null");
}
this.locale = locale;
numberFormat = null;
this.formatString = formatString;
}
@Override
public JsonValue encode(Number value) {
String stringValue;
if (value == null) {
stringValue = getNullRepresentation();
} else if (formatString != null && locale != null) {
stringValue = String.format(locale, formatString, value);
} else if (numberFormat != null) {
stringValue = numberFormat.format(value);
} else {
throw new IllegalStateException(String.format("Internal bug: "
+ "%s is in an illegal state: "
+ "[locale: %s, numberFormat: %s, formatString: %s]",
getClass().getSimpleName(), locale, numberFormat,
formatString));
}
return encode(stringValue, String.class);
}
@Override
public String toString() {
final String fieldInfo;
if (numberFormat != null) {
fieldInfo = "numberFormat: " + numberFormat;
} else {
fieldInfo = "locale: " + locale + ", formatString: " + formatString;
}
return String.format("%s [%s]", getClass().getSimpleName(), fieldInfo);
}
@Override
public String getNullRepresentation() {
return super.getNullRepresentation();
}
}