/* * Copyright 2000-2022 Vaadin Ltd. * * 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 com.vaadin.v7.data.util.converter; import java.util.EnumSet; import java.util.Locale; import com.vaadin.data.Binder; /** * A converter that converts from {@link String} to an {@link Enum} and back. *
* Designed to provide nice human readable strings for {@link Enum} classes * conforming to one of these patterns: *
* Compatible with {@link #enumToString(Enum, Locale)}
*
* @param value
* The string value to convert
* @param enumType
* The type of enum to create
* @param locale
* The locale to use for conversion. If null, the JVM default
* locale will be used
* @return The enum which matches the given string
* @throws ConversionException
* if the conversion fails
*/
public static
* Compatible with {@link #stringToEnum(String, Class, Locale)}
*
* @param value
* The enum value to convert
* @param locale
* The locale to use for conversion. If null, the JVM default
* locale will be used
* @return A human readable string based on the enum
* @throws ConversionException
* if the conversion fails
*/
public static String enumToString(Enum> value, Locale locale) {
if (locale == null) {
locale = Locale.getDefault();
}
String enumString = value.toString();
if (enumString.equals(value.name())) {
// FOO -> Foo
// FOO_BAR -> Foo bar
// _FOO -> _foo
String result = enumString.substring(0, 1).toUpperCase(locale);
result += enumString.substring(1).toLowerCase(locale).replace('_',
' ');
return result;
} else {
return enumString;
}
}
@Override
public String convertToPresentation(Enum value,
Class extends String> targetType, Locale locale)
throws ConversionException {
if (value == null) {
return null;
}
return enumToString(value, locale);
}
@Override
public Class