Package com.linkedin.alpini.base.misc
Enum SimpleJsonMapper
- java.lang.Object
-
- java.lang.Enum<SimpleJsonMapper>
-
- com.linkedin.alpini.base.misc.SimpleJsonMapper
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SimpleJsonMapper>
public enum SimpleJsonMapper extends java.lang.Enum<SimpleJsonMapper>
A VERY simple JSON mapper. This class will take a string of simple JSON and convert it into a Map. Created by zpolicze on 10/29/14.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SINGLETON
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static com.fasterxml.jackson.databind.ObjectMapper
getObjectMapper()
static java.util.Map<java.lang.String,java.lang.Object>
mapJSON(java.lang.String json)
Converts valid JSON document into a hash map of Strings.static SimpleJsonMapper
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SimpleJsonMapper[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLETON
public static final SimpleJsonMapper SINGLETON
-
-
Method Detail
-
values
public static SimpleJsonMapper[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SimpleJsonMapper c : SimpleJsonMapper.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleJsonMapper valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getObjectMapper
public static com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()
-
mapJSON
public static java.util.Map<java.lang.String,java.lang.Object> mapJSON(java.lang.String json) throws java.lang.Exception
Converts valid JSON document into a hash map of Strings.- Parameters:
json
- a valid json string to be mapped.- Returns:
- the inputted json string as a map.
- Throws:
java.lang.Exception
- when parameter json is not a valid json string.
-
-