Java Code Examples for com.google.gson.JsonPrimitive#getAsString()
The following examples show how to use
com.google.gson.JsonPrimitive#getAsString() .
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: FluidRecipeSerializer.java From the-hallow with MIT License | 6 votes |
/** * Attempts to extract a {@link Item} from the given JsonObject. * Assumes we're inside the top level of a result block: * * "result": { * "item": "minecraft:cobblestone", * "count": 2 * } * * If the Item does not exist in {@link Registry#ITEM}, an exception is thrown and {@link Items#AIR} is returned. * * @param itemJson JsonObject to extract Item from * @return Item extracted from Json */ private Item getItem(JsonObject itemJson) { Item result; if(itemJson.get(ITEM_KEY).isJsonPrimitive()) { JsonPrimitive itemPrimitive = itemJson.getAsJsonPrimitive(ITEM_KEY); if(itemPrimitive.isString()) { Identifier itemIdentifier = new Identifier(itemPrimitive.getAsString()); Optional<Item> opt = Registry.ITEM.getOrEmpty(itemIdentifier); if(opt.isPresent()) { result = opt.get(); } else { throw new IllegalArgumentException("Item registry does not contain " + itemIdentifier.toString() + "!" + "\n" + prettyPrintJson(itemJson)); } } else { throw new IllegalArgumentException("Expected JsonPrimitive to be a String, got " + itemPrimitive.getAsString() + "\n" + prettyPrintJson(itemJson)); } } else { throw new InvalidJsonException("\"" + ITEM_KEY + "\" needs to be a String JsonPrimitive, found " + itemJson.getClass() + "!\n" + prettyPrintJson(itemJson)); } return result; }
Example 2
Source File: MapTypeAdapterFactory.java From letv with Apache License 2.0 | 6 votes |
private String keyToString(JsonElement keyElement) { if (keyElement.isJsonPrimitive()) { JsonPrimitive primitive = keyElement.getAsJsonPrimitive(); if (primitive.isNumber()) { return String.valueOf(primitive.getAsNumber()); } if (primitive.isBoolean()) { return Boolean.toString(primitive.getAsBoolean()); } if (primitive.isString()) { return primitive.getAsString(); } throw new AssertionError(); } else if (keyElement.isJsonNull()) { return "null"; } else { throw new AssertionError(); } }
Example 3
Source File: ParameterAdapter.java From activitystreams with Apache License 2.0 | 6 votes |
private Object deserialize( JsonDeserializationContext context, JsonElement el) { if (el.isJsonArray()) { return context.deserialize(el, Iterable.class); } else if (el.isJsonObject()) { return context.deserialize(el, ASObject.class); } else if (el.isJsonPrimitive()) { JsonPrimitive p = el.getAsJsonPrimitive(); if (p.isBoolean()) return p.getAsBoolean(); else if (p.isNumber()) return p.getAsNumber(); else return p.getAsString(); } else return null; }
Example 4
Source File: JsonUtils.java From kurento-java with Apache License 2.0 | 6 votes |
public Object toPrimitiveObject(JsonElement element) { JsonPrimitive primitive = (JsonPrimitive) element; if (primitive.isBoolean()) { return Boolean.valueOf(primitive.getAsBoolean()); } else if (primitive.isNumber()) { Number number = primitive.getAsNumber(); double value = number.doubleValue(); if ((int) value == value) { return Integer.valueOf((int) value); } else if ((long) value == value) { return Long.valueOf((long) value); } else if ((float) value == value) { return Float.valueOf((float) value); } else { return Double.valueOf((double) value); } } else if (primitive.isString()) { return primitive.getAsString(); } else { throw new JsonRpcException("Unrecognized JsonPrimitive: " + primitive); } }
Example 5
Source File: ReplicatorDocument.java From java-cloudant with Apache License 2.0 | 6 votes |
private String getEndpointUrl(JsonElement element) { if (element == null) { return null; } JsonPrimitive urlString = null; if (element.isJsonPrimitive()) { urlString = element.getAsJsonPrimitive(); } else { JsonObject replicatorEndpointObject = element.getAsJsonObject(); urlString = replicatorEndpointObject.getAsJsonPrimitive("url"); } if (urlString == null) { return null; } return urlString.getAsString(); }
Example 6
Source File: BasicJsonUtils.java From kurento-java with Apache License 2.0 | 6 votes |
private static Object convertValue(JsonElement value) { if (value.isJsonNull()) { return null; } else if (value.isJsonPrimitive()) { JsonPrimitive prim = value.getAsJsonPrimitive(); if (prim.isBoolean()) { return prim.getAsBoolean(); } else if (prim.isNumber()) { Number n = prim.getAsNumber(); if (n.doubleValue() == n.intValue()) { return n.intValue(); } else { return n.doubleValue(); } } else if (prim.isString()) { return prim.getAsString(); } else { throw new RuntimeException("Unrecognized value: " + value); } } else { return value.toString(); } }
Example 7
Source File: GsonJsonRpcUnmarshaller.java From che with Eclipse Public License 2.0 | 6 votes |
private Object getInnerItem(JsonElement jsonElement) { if (jsonElement.isJsonNull()) { return null; } if (jsonElement.isJsonObject()) { return jsonElement.getAsJsonObject(); } if (jsonElement.isJsonPrimitive()) { JsonPrimitive jsonPrimitive = jsonElement.getAsJsonPrimitive(); if (jsonPrimitive.isNumber()) { return jsonPrimitive.getAsDouble(); } else if (jsonPrimitive.isString()) { return jsonPrimitive.getAsString(); } else { return jsonPrimitive.getAsBoolean(); } } throw new IllegalStateException("Unexpected json element type"); }
Example 8
Source File: DaemonEvent.java From flutter-intellij with BSD 3-Clause "New" or "Revised" License | 5 votes |
/** * Parses an event and sends it to the listener. */ static void dispatch(@NotNull JsonObject obj, @NotNull Listener listener) { final JsonPrimitive primEvent = obj.getAsJsonPrimitive("event"); if (primEvent == null) { LOG.info("Missing event field in JSON from flutter process: " + obj); return; } final String eventName = primEvent.getAsString(); if (eventName == null) { LOG.info("Unexpected event field in JSON from flutter process: " + obj); return; } final JsonObject params = obj.getAsJsonObject("params"); if (params == null) { LOG.info("Missing parameters in event from flutter process: " + obj); return; } final DaemonEvent event = create(eventName, params); if (event == null) { return; // Drop unknown event. } event.accept(listener); }
Example 9
Source File: GsonObjectDeserializer.java From qaf with MIT License | 5 votes |
public static Object read(JsonElement in) { if (in.isJsonArray()) { List<Object> list = new ArrayList<Object>(); JsonArray arr = in.getAsJsonArray(); for (JsonElement anArr : arr) { list.add(read(anArr)); } return list; } else if (in.isJsonObject()) { Map<String, Object> map = new LinkedTreeMap<String, Object>(); JsonObject obj = in.getAsJsonObject(); Set<Map.Entry<String, JsonElement>> entitySet = obj.entrySet(); for (Map.Entry<String, JsonElement> entry : entitySet) { map.put(entry.getKey(), read(entry.getValue())); } return map; } else if (in.isJsonPrimitive()) { JsonPrimitive prim = in.getAsJsonPrimitive(); if (prim.isBoolean()) { return prim.getAsBoolean(); } else if (prim.isString()) { return prim.getAsString(); } else if (prim.isNumber()) { if (prim.getAsString().contains(".")) return prim.getAsDouble(); else { return prim.getAsLong(); } } } return null; }
Example 10
Source File: ConfigurationDeserializer.java From smarthome with Eclipse Public License 2.0 | 5 votes |
private Object deserialize(JsonPrimitive primitive) { if (primitive.isString()) { return primitive.getAsString(); } else if (primitive.isNumber()) { return primitive.getAsBigDecimal(); } else if (primitive.isBoolean()) { return primitive.getAsBoolean(); } else { throw new IllegalArgumentException("Unsupported primitive: " + primitive); } }
Example 11
Source File: QueryOptions.java From yawp with MIT License | 5 votes |
private Object getJsonObjectValue(JsonElement jsonElement) { if (jsonElement.isJsonArray()) { return getJsonObjectValueForArrays(jsonElement); } if (jsonElement.isJsonNull()) { return null; } JsonPrimitive jsonPrimitive = jsonElement.getAsJsonPrimitive(); if (jsonPrimitive.isNumber()) { if (jsonPrimitive.getAsString().indexOf(".") != -1) { return jsonPrimitive.getAsDouble(); } return jsonPrimitive.getAsLong(); } if (jsonPrimitive.isString()) { return jsonPrimitive.getAsString(); } if (jsonPrimitive.isBoolean()) { return jsonPrimitive.getAsBoolean(); } // TODO timestamp throw new RuntimeException("Invalid json value: " + jsonPrimitive.getAsString()); }
Example 12
Source File: ASObjectAdapter.java From activitystreams with Apache License 2.0 | 5 votes |
@Override protected Object doForward(JsonPrimitive b) { if (b.isBoolean()) return b.getAsBoolean(); else if (b.isNumber()) return b.getAsNumber(); else return b.getAsString(); }
Example 13
Source File: AssetJson.java From QuickShop-Reremake with GNU General Public License v3.0 | 5 votes |
@Nullable public String getLanguageHash(@NotNull String languageCode) { languageCode = languageCode.replace("-", "_").toLowerCase().trim(); JsonObject json = new JsonParser().parse(this.gameAssets).getAsJsonObject(); if (json == null || json.isJsonNull()) { Util.debugLog("Cannot parse the json: " + this.gameAssets); return null; } JsonElement obje = json.get("objects"); if (obje == null) { Util.debugLog("Json element is null for json " + this.gameAssets); return null; } JsonObject objs = obje.getAsJsonObject(); if (objs == null || objs.isJsonNull()) { Util.debugLog("Json object is null."); return null; } JsonObject langObj = objs.getAsJsonObject(MsgUtil.fillArgs(pathTemplate, languageCode)); if (langObj == null || langObj.isJsonNull()) { Util.debugLog("Cannot find request path."); Util.debugLog(this.gameAssets); return null; } JsonPrimitive hashObj = langObj.getAsJsonPrimitive("hash"); if (hashObj == null || hashObj.isJsonNull()) { Util.debugLog("Cannot get hash."); return null; } return hashObj.getAsString(); }
Example 14
Source File: JsonUtil.java From java-trader with Apache License 2.0 | 5 votes |
public static Object json2value(JsonElement json) { Object result = null; if ( json.isJsonNull() ) { result = null; }else if ( json.isJsonObject() ) { JsonObject json0 = (JsonObject)json; LinkedHashMap<String, Object> map = new LinkedHashMap<>(); for(String key:json0.keySet()) { map.put(key, json2value(json0.get(key))); } result = map; }else if ( json.isJsonArray() ) { JsonArray arr = (JsonArray)json; ArrayList<Object> list = new ArrayList<>(arr.size()); for(int i=0;i<arr.size();i++) { list.add(json2value(arr.get(i))); } result = list; } else if ( json.isJsonPrimitive() ) { JsonPrimitive p = (JsonPrimitive)json; if ( p.isBoolean() ) { result = p.getAsBoolean(); }else if ( p.isNumber() ) { result = p.getAsDouble(); }else if ( p.isString()) { result = p.getAsString(); }else { result = p.getAsString(); } } return result; }
Example 15
Source File: AbstractGsonConverter.java From helper with MIT License | 5 votes |
@Override public Object unwarpPrimitive(JsonPrimitive primitive) { if (primitive.isBoolean()) { return primitive.getAsBoolean(); } else if (primitive.isNumber()) { return primitive.getAsNumber(); } else if (primitive.isString()) { return primitive.getAsString(); } else { throw new IllegalArgumentException("Unknown primitive type: " + primitive); } }
Example 16
Source File: ConvertJsonToXmlService.java From cs-actions with Apache License 2.0 | 5 votes |
private String getJsonPrimitiveValue(final JsonPrimitive jsonPrimitive) { if (jsonPrimitive.isNumber()) { return jsonPrimitive.getAsNumber().toString(); } else if (jsonPrimitive.isBoolean()) { return Boolean.toString(jsonPrimitive.getAsBoolean()); } return jsonPrimitive.getAsString(); }
Example 17
Source File: BsConfigReader.java From reasonml-idea-plugin with MIT License | 5 votes |
@Nullable private static String parseSourceItem(@NotNull JsonObject obj, @NotNull String type) { JsonPrimitive srcProp = obj.getAsJsonPrimitive("dir"); if (srcProp != null) { JsonPrimitive typeProp = obj.getAsJsonPrimitive("type"); String typeValue = typeProp != null && typeProp.isString() ? typeProp.getAsString() : ""; if (type.equals(typeValue)) { if (srcProp.isString()) { return srcProp.getAsString(); } } } return null; }
Example 18
Source File: JavaModelFactory.java From swellrt with Apache License 2.0 | 4 votes |
@Override public Object traverseJsonObject(Object o, String path) { if (o == null) return null; JsonElement e = (JsonElement) o; if (path == null || path.isEmpty()) { if (e.isJsonPrimitive()) { JsonPrimitive p = (JsonPrimitive) e; if (p.isBoolean()) return new Boolean(p.getAsBoolean()); else if (p.isNumber()) return new Double(p.getAsDouble()); else if (p.isString()) return new String(p.getAsString()); else return null; } else return e; } String propName = path.indexOf(".") != -1 ? path.substring(0, path.indexOf(".")) : path; String restPath = path.indexOf(".") != -1 ? path.substring(path.indexOf(".") + 1) : null; JsonElement propValue = null; if (e.isJsonObject()) { JsonObject object = (JsonObject) e; propValue = object.get(propName); return traverseJsonObject(propValue, restPath); } else if (e.isJsonArray()) { try { int index = Integer.parseInt(propName); JsonArray array = (JsonArray) e; return traverseJsonObject(array.get(index), restPath); } catch (NumberFormatException ex) { return null; } } else if (e.isJsonPrimitive()) { return null; } return null; }
Example 19
Source File: TransactionAdapter.java From v20-java with MIT License | 4 votes |
@Override public Transaction deserialize(JsonElement json, Type arg1, JsonDeserializationContext context) throws JsonParseException { JsonObject jsonObject = json.getAsJsonObject(); JsonPrimitive prim = (JsonPrimitive) jsonObject.get("type"); String typestring = prim.getAsString(); TransactionType type = TransactionType.valueOf(typestring); switch (type) { case MARKET_ORDER: return context.deserialize(json, MarketOrderTransaction.class); case ORDER_FILL: return context.deserialize(json, OrderFillTransaction.class); case ORDER_CANCEL: return context.deserialize(json, OrderCancelTransaction.class); case MARKET_ORDER_REJECT: return context.deserialize(json, MarketOrderRejectTransaction.class); case TRADE_CLIENT_EXTENSIONS_MODIFY: return context.deserialize(json, TradeClientExtensionsModifyTransaction.class); case TRADE_CLIENT_EXTENSIONS_MODIFY_REJECT: return context.deserialize(json, TradeClientExtensionsModifyRejectTransaction.class); case TAKE_PROFIT_ORDER: return context.deserialize(json, TakeProfitOrderTransaction.class); case STOP_LOSS_ORDER: return context.deserialize(json, StopLossOrderTransaction.class); case TRAILING_STOP_LOSS_ORDER: return context.deserialize(json, TrailingStopLossOrderTransaction.class); case ORDER_CANCEL_REJECT: return context.deserialize(json, OrderCancelRejectTransaction.class); case TAKE_PROFIT_ORDER_REJECT: return context.deserialize(json, TakeProfitOrderRejectTransaction.class); case STOP_LOSS_ORDER_REJECT: return context.deserialize(json, StopLossOrderRejectTransaction.class); case TRAILING_STOP_LOSS_ORDER_REJECT: return context.deserialize(json, TrailingStopLossOrderRejectTransaction.class); case CLIENT_CONFIGURE: return context.deserialize(json, ClientConfigureTransaction.class); case CLIENT_CONFIGURE_REJECT: return context.deserialize(json, ClientConfigureRejectTransaction.class); case CREATE: return context.deserialize(json, CreateTransaction.class); case CLOSE: return context.deserialize(json, CloseTransaction.class); case REOPEN: return context.deserialize(json, ReopenTransaction.class); case TRANSFER_FUNDS: return context.deserialize(json, TransferFundsTransaction.class); case TRANSFER_FUNDS_REJECT: return context.deserialize(json, TransferFundsRejectTransaction.class); case FIXED_PRICE_ORDER: return context.deserialize(json, FixedPriceOrderTransaction.class); case LIMIT_ORDER: return context.deserialize(json, LimitOrderTransaction.class); case LIMIT_ORDER_REJECT: return context.deserialize(json, LimitOrderRejectTransaction.class); case STOP_ORDER: return context.deserialize(json, StopOrderTransaction.class); case STOP_ORDER_REJECT: return context.deserialize(json, StopOrderRejectTransaction.class); case MARKET_IF_TOUCHED_ORDER: return context.deserialize(json, MarketIfTouchedOrderTransaction.class); case MARKET_IF_TOUCHED_ORDER_REJECT: return context.deserialize(json, MarketIfTouchedOrderRejectTransaction.class); case ORDER_CLIENT_EXTENSIONS_MODIFY: return context.deserialize(json, OrderClientExtensionsModifyTransaction.class); case ORDER_CLIENT_EXTENSIONS_MODIFY_REJECT: return context.deserialize(json, OrderClientExtensionsModifyRejectTransaction.class); case MARGIN_CALL_ENTER: return context.deserialize(json, MarginCallEnterTransaction.class); case MARGIN_CALL_EXTEND: return context.deserialize(json, MarginCallExtendTransaction.class); case MARGIN_CALL_EXIT: return context.deserialize(json, MarginCallExitTransaction.class); case DELAYED_TRADE_CLOSURE: return context.deserialize(json, DelayedTradeClosureTransaction.class); case DAILY_FINANCING: return context.deserialize(json, DailyFinancingTransaction.class); case RESET_RESETTABLE_PL: return context.deserialize(json, ResetResettablePLTransaction.class); } return null; }
Example 20
Source File: BetterJsonObject.java From Hyperium with GNU Lesser General Public License v3.0 | 2 votes |
/** * The optional string method, returns the default value if * the key is null, empty or the data does not contain * the key. This will also return the default value if * the data value is not a string * * @param key the key the value will be loaded from * @return the value in the json data set or the default if the key cannot be found */ public String optString(String key, String value) { if (key == null || key.isEmpty() || !has(key)) return value; JsonPrimitive primitive = asPrimitive(get(key)); return primitive != null && primitive.isString() ? primitive.getAsString() : value; }