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

com.feilong.lib.xstream.converters.enums.EnumToStringConverter Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2013, 2016, 2018 XStream Committers.
 * All rights reserved.
 *
 * The software in this package is published under the terms of the BSD
 * style license a copy of which has been included with this distribution in
 * the LICENSE.txt file.
 *
 * Created on 14. March 2013 by Joerg Schaible
 */
package com.feilong.lib.xstream.converters.enums;

import java.util.EnumMap;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;

import com.feilong.lib.xstream.InitializationException;
import com.feilong.lib.xstream.converters.ConversionException;
import com.feilong.lib.xstream.converters.basic.AbstractSingleValueConverter;

/**
 * A single value converter for a special enum type using its string representation.
 * 
 * @author Jörg Schaible
 * @since 1.4.5
 */
public class EnumToStringConverter> extends AbstractSingleValueConverter{

    private final Class           enumType;

    private final Map     strings;

    private final EnumMap values;

    public EnumToStringConverter(Class type){
        this(type, extractStringMap(type), null);
    }

    public EnumToStringConverter(Class type, Map strings){
        this(type, strings, buildValueMap(type, strings));
    }

    private EnumToStringConverter(Class type, Map strings, EnumMap values){
        enumType = type;
        this.strings = strings;
        this.values = values;
    }

    private static > Map extractStringMap(Class type){
        checkType(type);
        EnumSet values = EnumSet.allOf(type);
        Map strings = new HashMap<>(values.size());
        for (T value : values){
            if (strings.put(value.toString(), value) != null){
                throw new InitializationException(
                                "Enum type " + type.getName() + " does not have unique string representations for its values");
            }
        }
        return strings;
    }

    private static  void checkType(Class type){
        if (!Enum.class.isAssignableFrom(type) && type != Enum.class){
            throw new InitializationException("Converter can only handle enum types");
        }
    }

    private static > EnumMap buildValueMap(Class type,Map strings){
        EnumMap values = new EnumMap<>(type);
        for (Map.Entry entry : strings.entrySet()){
            values.put(entry.getValue(), entry.getKey());
        }
        return values;
    }

    @Override
    public boolean canConvert(Class type){
        return type != null && enumType.isAssignableFrom(type);
    }

    @Override
    public String toString(Object obj){
        Enum value = Enum.class.cast(obj);
        return values == null ? value.toString() : values.get(value);
    }

    @Override
    public Object fromString(String str){
        if (str == null){
            return null;
        }
        T result = strings.get(str);
        if (result == null){
            ConversionException exception = new ConversionException("Invalid string representation for enum type");
            exception.add("enum-type", enumType.getName());
            exception.add("enum-string", str);
            throw exception;
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy