org.dominokit.jackson.deser.map.EnumMapJsonDeserializer Maven / Gradle / Ivy
/*
* Copyright 2013 Nicolas Morel
*
* 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.dominokit.jackson.deser.map;
import java.util.EnumMap;
import org.dominokit.jackson.JsonDeserializer;
import org.dominokit.jackson.deser.map.key.EnumKeyDeserializer;
/**
* Default {@link org.dominokit.jackson.JsonDeserializer} implementation for {@link
* java.util.EnumMap}.
*
* Cannot be overriden. Use {@link org.dominokit.jackson.deser.map.BaseMapJsonDeserializer}.
*
* @param Type of the enum keys inside the {@link java.util.EnumMap}
* @param Type of the values inside the {@link java.util.EnumMap}
*/
public final class EnumMapJsonDeserializer, V>
extends BaseMapJsonDeserializer, E, V> {
/**
* newInstance
*
* @param keyDeserializer {@link org.dominokit.jackson.deser.map.key.EnumKeyDeserializer} used to
* deserialize the enum keys.
* @param valueDeserializer {@link org.dominokit.jackson.JsonDeserializer} used to deserialize the
* values.
* @param Type of the values inside the {@link java.util.EnumMap}
* @param the enum type
* @return a new instance of {@link org.dominokit.jackson.deser.map.EnumMapJsonDeserializer}
*/
public static , V> EnumMapJsonDeserializer newInstance(
EnumKeyDeserializer keyDeserializer, JsonDeserializer valueDeserializer) {
return new EnumMapJsonDeserializer(keyDeserializer, valueDeserializer);
}
/** Class of the enum key */
private final Class enumClass;
/**
* @param keyDeserializer {@link EnumKeyDeserializer} used to deserialize the enum keys.
* @param valueDeserializer {@link JsonDeserializer} used to deserialize the values.
*/
private EnumMapJsonDeserializer(
EnumKeyDeserializer keyDeserializer, JsonDeserializer valueDeserializer) {
super(keyDeserializer, valueDeserializer);
this.enumClass = keyDeserializer.getEnumClass();
}
/** {@inheritDoc} */
@Override
protected EnumMap newMap() {
return new EnumMap(enumClass);
}
}