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

com.xeiam.xchange.utils.jackson.EnumIntDeserializerOneBased Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.xeiam.xchange.utils.jackson;

/**
 * @author Matija Mazi 
* 1-based enum deserializer. This wil deserialize 1 as the first enum constant, 2 as the second etc. */ public class EnumIntDeserializerOneBased> extends EnumIntDeserializer { protected EnumIntDeserializerOneBased(Class enumClass) { super(enumClass); } @Override protected int getIndexBase() { return 1; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy