本文整理匯總了Java中org.apache.commons.lang.math.NumberUtils.toDouble方法的典型用法代碼示例。如果您正苦於以下問題:Java NumberUtils.toDouble方法的具體用法?Java NumberUtils.toDouble怎麽用?Java NumberUtils.toDouble使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.commons.lang.math.NumberUtils
的用法示例。
在下文中一共展示了NumberUtils.toDouble方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getQuestions
import org.apache.commons.lang.math.NumberUtils; //導入方法依賴的package包/類
private List<Question> getQuestions(String sortby, String filter, HttpServletRequest req, Model model) {
Pager itemcount = utils.getPager("page", req);
List<Question> questionslist = Collections.emptyList();
String type = Utils.type(Question.class);
String query = "*";
if ("activity".equals(sortby)) {
itemcount.setSortby("updated");
} else if ("votes".equals(sortby)) {
itemcount.setSortby("votes");
} else if ("unanswered".equals(sortby)) {
itemcount.setSortby("timestamp");
itemcount.setDesc(false);
query = "properties.answercount:0";
}
if (!StringUtils.isBlank(filter) && utils.isAuthenticated(req)) {
Profile authUser = utils.getAuthUser(req);
if ("favtags".equals(filter)) {
questionslist = pc.findTermInList(type, Config._TAGS, authUser.getFavtags(), itemcount);
} else if ("favtags".equals(filter)) {
String[] ll = authUser.getLatlng() == null ? new String[0] : authUser.getLatlng().split(",");
if (ll.length == 2) {
double lat = NumberUtils.toDouble(ll[0]);
double lng = NumberUtils.toDouble(ll[1]);
questionslist = pc.findNearby(type, "*", 25, lat, lng, itemcount);
}
}
model.addAttribute("localFilterOn", "local".equals(filter));
model.addAttribute("tagFilterOn", "favtags".equals(filter));
model.addAttribute("filter", "/" + Utils.stripAndTrim(filter));
} else {
questionslist = pc.findQuery(type, query, itemcount);
}
utils.fetchProfiles(questionslist);
model.addAttribute("itemcount", itemcount);
model.addAttribute("questionslist", questionslist);
return questionslist;
}