Java Code Examples for com.fasterxml.jackson.core.JsonParser#getShortValue()
The following examples show how to use
com.fasterxml.jackson.core.JsonParser#getShortValue() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ShortBeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute value parsing */ public static short[] parseValue(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortTypeArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 2
Source File: ShortDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser1 parsing */ private List<Short> parser1(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); List<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 3
Source File: ShortBeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute value2 parsing */ public static LinkedList<Short> parseValue2(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); LinkedList<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { LinkedList<Short> collection=new LinkedList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 4
Source File: ShortBeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute value parsing */ public static List<Short> parseValue(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); List<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 5
Source File: CharDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser2 parsing */ private List<Short> parser2(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); List<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 6
Source File: ByteDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser1 parsing */ private List<Short> parser1(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); List<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 7
Source File: ShortDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser1 parsing */ private short[] parser1(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortTypeArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 8
Source File: ShortDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser2 parsing */ private Short[] parser2(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); Short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 9
Source File: ShortBeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute value2 parsing */ public static Short[] parseValue2(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); Short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 10
Source File: ShortDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser1 parsing */ private short[] parser1(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortTypeArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 11
Source File: ShortDaoImpl.java From kripton with Apache License 2.0 | 5 votes |
/** * for param parser2 parsing */ private Short[] parser2(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); Short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 12
Source File: ShortBeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute value2 parsing */ public static Short[] parseValue2(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); Short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 13
Source File: ShortBeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute value parsing */ public static short[] parseValue(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); short[] result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { ArrayList<Short> collection=new ArrayList<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=CollectionUtils.asShortTypeArray(collection); } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 14
Source File: BeanTable.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute valueShortSet parsing */ public static HashSet<Short> parseValueShortSet(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); HashSet<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { HashSet<Short> collection=new HashSet<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 15
Source File: BindBeanSharedPreferences.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute valueShortSet parsing */ protected HashSet<Short> parseValueShortSet(String input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); HashSet<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { HashSet<Short> collection=new HashSet<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 16
Source File: Bean2Table.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute valueShortSet parsing */ public static HashSet<Short> parseValueShortSet(byte[] input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); HashSet<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { HashSet<Short> collection=new HashSet<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 17
Source File: BindBean2SharedPreferences.java From kripton with Apache License 2.0 | 5 votes |
/** * for attribute valueShortSet parsing */ protected HashSet<Short> parseValueShortSet(String input) { if (input==null) { return null; } KriptonJsonContext context=KriptonBinder.jsonBind(); try (JacksonWrapperParser wrapper=context.createParser(input)) { JsonParser jacksonParser=wrapper.jacksonParser; // START_OBJECT jacksonParser.nextToken(); // value of "element" jacksonParser.nextValue(); HashSet<Short> result=null; if (jacksonParser.currentToken()==JsonToken.START_ARRAY) { HashSet<Short> collection=new HashSet<>(); Short item=null; while (jacksonParser.nextToken() != JsonToken.END_ARRAY) { if (jacksonParser.currentToken()==JsonToken.VALUE_NULL) { item=null; } else { item=jacksonParser.getShortValue(); } collection.add(item); } result=collection; } return result; } catch(Exception e) { e.printStackTrace(); throw(new KriptonRuntimeException(e.getMessage())); } }
Example 18
Source File: PrimitiveKVHandler.java From jackson-datatypes-collections with Apache License 2.0 | 4 votes |
public short value(DeserializationContext ctx, JsonParser parser) throws IOException { return parser.getShortValue(); }