org.seasar.framework.conversion.NumberConversionUtil Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2004-2015 the Seasar Foundation and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.seasar.framework.conversion;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import org.seasar.framework.util.DecimalFormatSymbolsUtil;
import org.seasar.framework.util.StringUtil;
/**
* {@link Number}用の変換ユーティリティです。
*
* @author higa
*
*/
public class NumberConversionUtil {
/**
* インスタンスを構築します。
*/
protected NumberConversionUtil() {
}
/**
* 適切な {@link Number}に変換します。
*
* @param type type
* @param o o
* @return 適切な {@link Number}
*/
public static Object convertNumber(Class> type, Object o) {
if (type == Integer.class) {
return IntegerConversionUtil.toInteger(o);
} else if (type == BigDecimal.class) {
return BigDecimalConversionUtil.toBigDecimal(o);
} else if (type == Double.class) {
return DoubleConversionUtil.toDouble(o);
} else if (type == Long.class) {
return LongConversionUtil.toLong(o);
} else if (type == Float.class) {
return FloatConversionUtil.toFloat(o);
} else if (type == Short.class) {
return ShortConversionUtil.toShort(o);
} else if (type == BigInteger.class) {
return BigIntegerConversionUtil.toBigInteger(o);
} else if (type == Byte.class) {
return ByteConversionUtil.toByte(o);
}
return o;
}
/**
* Wrapperを返します。
*
* @param type type
* @param o o
* @return Wrapper
*/
public static Object convertPrimitiveWrapper(Class> type, Object o) {
if (type == int.class) {
Integer i = IntegerConversionUtil.toInteger(o);
if (i != null) {
return i;
}
return Integer.valueOf(0);
} else if (type == double.class) {
Double d = DoubleConversionUtil.toDouble(o);
if (d != null) {
return d;
}
return Double.valueOf(0);
} else if (type == long.class) {
Long l = LongConversionUtil.toLong(o);
if (l != null) {
return l;
}
return Long.valueOf(0);
} else if (type == float.class) {
Float f = FloatConversionUtil.toFloat(o);
if (f != null) {
return f;
}
return Float.valueOf(0);
} else if (type == short.class) {
Short s = ShortConversionUtil.toShort(o);
if (s != null) {
return s;
}
return Short.valueOf((short) 0);
} else if (type == boolean.class) {
Boolean b = BooleanConversionUtil.toBoolean(o);
if (b != null) {
return b;
}
return Boolean.FALSE;
} else if (type == byte.class) {
Byte b = ByteConversionUtil.toByte(o);
if (b != null) {
return b;
}
return Byte.valueOf((byte) 0);
}
return o;
}
/**
* デリミタを削除します。
*
* @param value value
* @param locale locale
* @return デリミタを削除した結果
*/
public static String removeDelimeter(String value, Locale locale) {
String groupingSeparator = findGroupingSeparator(locale);
if (groupingSeparator != null) {
value = StringUtil.replace(value, groupingSeparator, "");
}
return value;
}
/**
* グルーピング用のセパレータを探します。
*
* @param locale locale
* @return グルーピング用のセパレータ
*/
public static String findGroupingSeparator(Locale locale) {
DecimalFormatSymbols symbol = getDecimalFormatSymbols(locale);
return Character.toString(symbol.getGroupingSeparator());
}
/**
* 数値のセパレータを返します。
*
* @param locale locale
* @return 数値のセパレータ
*/
public static String findDecimalSeparator(Locale locale) {
DecimalFormatSymbols symbol = getDecimalFormatSymbols(locale);
return Character.toString(symbol.getDecimalSeparator());
}
private static DecimalFormatSymbols getDecimalFormatSymbols(Locale locale) {
DecimalFormatSymbols symbol;
if (locale != null) {
symbol = DecimalFormatSymbolsUtil.getDecimalFormatSymbols(locale);
} else {
symbol = DecimalFormatSymbolsUtil.getDecimalFormatSymbols();
}
return symbol;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy