Here you can find the source of getLongProperty(JsonObject object, String property)
public static long getLongProperty(JsonObject object, String property)
//package com.java2s; import javax.json.*; public class Main { public static long getLongProperty(JsonObject object, String property) { return object.getJsonNumber(property).longValue(); }// w ww. j a va 2 s . c om }