facebook4j.internal.util.z_F4JInternalParseUtil.getDouble()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(113)

本文整理了Java中facebook4j.internal.util.z_F4JInternalParseUtil.getDouble()方法的一些代码示例,展示了z_F4JInternalParseUtil.getDouble()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。z_F4JInternalParseUtil.getDouble()方法的具体详情如下:
包路径:facebook4j.internal.util.z_F4JInternalParseUtil
类名称:z_F4JInternalParseUtil
方法名:getDouble

z_F4JInternalParseUtil.getDouble介绍

暂无

代码示例

代码示例来源:origin: roundrop/facebook4j

/*package*/LocationJSONImpl(JSONObject json) throws FacebookException {
  street = getRawString("street", json);
  city = getRawString("city", json);
  state = getRawString("state", json);
  country = getRawString("country", json);
  zip = getRawString("zip", json);
  latitude = getDouble("latitude", json);
  longitude = getDouble("longitude", json);
}
/*package*/LocationJSONImpl(String text) throws FacebookException {

代码示例来源:origin: org.facebook4j/facebook4j-core

/*package*/LocationJSONImpl(JSONObject json) throws FacebookException {
  street = getRawString("street", json);
  city = getRawString("city", json);
  state = getRawString("state", json);
  country = getRawString("country", json);
  zip = getRawString("zip", json);
  latitude = getDouble("latitude", json);
  longitude = getDouble("longitude", json);
}
/*package*/LocationJSONImpl(String text) throws FacebookException {

代码示例来源:origin: apache/servicemix-bundles

/*package*/LocationJSONImpl(JSONObject json) throws FacebookException {
  street = getRawString("street", json);
  city = getRawString("city", json);
  state = getRawString("state", json);
  country = getRawString("country", json);
  zip = getRawString("zip", json);
  latitude = getDouble("latitude", json);
  longitude = getDouble("longitude", json);
}
/*package*/LocationJSONImpl(String text) throws FacebookException {

代码示例来源:origin: roundrop/facebook4j

/*package*/VenueJSONImpl(JSONObject json) {
  id = getRawString("id", json);
  street = getRawString("street", json);
  city = getRawString("city", json);
  state = getRawString("state", json);
  country = getRawString("country", json);
  latitude = getDouble("latitude", json);
  longitude = getDouble("longitude", json);
  zip = getRawString("zip", json);
}

代码示例来源:origin: org.facebook4j/facebook4j-core

/*package*/VenueJSONImpl(JSONObject json) {
  id = getRawString("id", json);
  street = getRawString("street", json);
  city = getRawString("city", json);
  state = getRawString("state", json);
  country = getRawString("country", json);
  latitude = getDouble("latitude", json);
  longitude = getDouble("longitude", json);
  zip = getRawString("zip", json);
}

代码示例来源:origin: apache/servicemix-bundles

/*package*/VenueJSONImpl(JSONObject json) {
  id = getRawString("id", json);
  street = getRawString("street", json);
  city = getRawString("city", json);
  state = getRawString("state", json);
  country = getRawString("country", json);
  latitude = getDouble("latitude", json);
  longitude = getDouble("longitude", json);
  zip = getRawString("zip", json);
}

代码示例来源:origin: roundrop/facebook4j

private void init(JSONObject json) throws FacebookException {
  id = getRawString("id", json);
  name = getRawString("name", json);
  if (!json.isNull("offset")) {
    offset = getPrimitiveInt("offset", json);
  } else {
    offset = null;
  }
  if (!json.isNull("length")) {
    length = getPrimitiveInt("length", json);
  } else {
    length = null;
  }
  type = getRawString("type", json);
  
  if (!json.isNull("x")) {
    x = getDouble("x", json);
  } else {
    x = null;
  }
  if (!json.isNull("y")) {
    y = getDouble("y", json);
  } else {
    y = null;
  }
  createdTime = getISO8601Datetime("created_time", json);
}

代码示例来源:origin: org.facebook4j/facebook4j-core

private void init(JSONObject json) throws FacebookException {
  id = getRawString("id", json);
  name = getRawString("name", json);
  if (!json.isNull("offset")) {
    offset = getPrimitiveInt("offset", json);
  } else {
    offset = null;
  }
  if (!json.isNull("length")) {
    length = getPrimitiveInt("length", json);
  } else {
    length = null;
  }
  type = getRawString("type", json);
  
  if (!json.isNull("x")) {
    x = getDouble("x", json);
  } else {
    x = null;
  }
  if (!json.isNull("y")) {
    y = getDouble("y", json);
  } else {
    y = null;
  }
  createdTime = getISO8601Datetime("created_time", json);
}

代码示例来源:origin: apache/servicemix-bundles

private void init(JSONObject json) throws FacebookException {
  id = getRawString("id", json);
  name = getRawString("name", json);
  if (!json.isNull("offset")) {
    offset = getPrimitiveInt("offset", json);
  } else {
    offset = null;
  }
  if (!json.isNull("length")) {
    length = getPrimitiveInt("length", json);
  } else {
    length = null;
  }
  type = getRawString("type", json);
  
  if (!json.isNull("x")) {
    x = getDouble("x", json);
  } else {
    x = null;
  }
  if (!json.isNull("y")) {
    y = getDouble("y", json);
  } else {
    y = null;
  }
  createdTime = getISO8601Datetime("created_time", json);
}

相关文章