com.fasterxml.jackson.databind.deser.std
Class StdKeyDeserializer
java.lang.Object
com.fasterxml.jackson.databind.KeyDeserializer
com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer
public abstract class StdKeyDeserializer
- extends KeyDeserializer
Base class for simple key deserializers.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_keyClass
protected final Class<?> _keyClass
StdKeyDeserializer
protected StdKeyDeserializer(Class<?> cls)
deserializeKey
public final Object deserializeKey(String key,
DeserializationContext ctxt)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
- Description copied from class:
KeyDeserializer
- Method called to deserialize a
Map
key from JSON property name.
- Specified by:
deserializeKey
in class KeyDeserializer
- Throws:
IOException
com.fasterxml.jackson.core.JsonProcessingException
getKeyClass
public Class<?> getKeyClass()
_parse
protected abstract Object _parse(String key,
DeserializationContext ctxt)
throws Exception
- Throws:
Exception
_parseInt
protected int _parseInt(String key)
throws IllegalArgumentException
- Throws:
IllegalArgumentException
_parseLong
protected long _parseLong(String key)
throws IllegalArgumentException
- Throws:
IllegalArgumentException
_parseDouble
protected double _parseDouble(String key)
throws IllegalArgumentException
- Throws:
IllegalArgumentException
Copyright © 2012 fasterxml.com. All Rights Reserved.