EnumConverter.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.beanutils2.converters;

  18. /**
  19.  * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion to and from <strong>java.lang.Enum</strong> objects.
  20.  * <p>
  21.  * Can be configured to either return a <em>default value</em> or throw a {@code ConversionException} if a conversion error occurs.
  22.  * </p>
  23.  *
  24.  * @param <E> The enum type subclass
  25.  * @since 2.0
  26.  * @see Enum
  27.  */
  28. public final class EnumConverter<E extends Enum<E>> extends AbstractConverter<Enum<E>> {

  29.     /**
  30.      * Constructs a <strong>java.lang.Enum</strong> <em>Converter</em> that throws a {@code ConversionException} if an error occurs.
  31.      */
  32.     public EnumConverter() {
  33.     }

  34.     /**
  35.      * Constructs a <strong>java.lang.Enum</strong> <em>Converter</em> that returns a default value if an error occurs.
  36.      *
  37.      * @param defaultValue The default value to be returned if the value to be converted is missing or an error occurs converting the value.
  38.      */
  39.     public EnumConverter(final Enum<E> defaultValue) {
  40.         super(defaultValue);
  41.     }

  42.     /**
  43.      * <p>
  44.      * Converts a java.lang.Enum or object into a String.
  45.      * </p>
  46.      *
  47.      * @param <R>   Target type of the conversion.
  48.      * @param type  Data type to which this value should be converted.
  49.      * @param value The input value to be converted.
  50.      * @return The converted value.
  51.      * @throws Throwable if an error occurs converting to the specified type
  52.      * @since 2.0
  53.      */
  54.     @SuppressWarnings({ "rawtypes" })
  55.     @Override
  56.     protected <R> R convertToType(final Class<R> type, final Object value) throws Throwable {
  57.         if (Enum.class.isAssignableFrom(type)) {
  58.             final String enumValue = String.valueOf(value);
  59.             final R[] constants = type.getEnumConstants();
  60.             if (constants == null) {
  61.                 throw conversionException(type, value);
  62.             }
  63.             for (final R candidate : constants) {
  64.                 if (((Enum) candidate).name().equalsIgnoreCase(enumValue)) {
  65.                     return candidate;
  66.                 }
  67.             }
  68.         }

  69.         throw conversionException(type, value);
  70.     }

  71.     /**
  72.      * Gets the default type this {@code Converter} handles.
  73.      *
  74.      * @return The default type this {@code Converter} handles.
  75.      * @since 2.0
  76.      */
  77.     @SuppressWarnings({ "unchecked", "rawtypes" })
  78.     @Override
  79.     protected Class<Enum<E>> getDefaultType() {
  80.         return (Class) Enum.class;
  81.     }

  82. }