org.eclipse.rdf4j.model.util.Literals.getDecimalValue()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(190)

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

Literals.getDecimalValue介绍

[英]Gets the decimal value of the supplied literal. The fallback value is returned in case Literal#decimalValue() throws a NumberFormatException.
[中]获取提供的文本的十进制值。如果Literal#decimalValue()抛出NumberFormatException,则返回回退值。

代码示例

代码示例来源:origin: org.eclipse.rdf4j/rdf4j-client

/**
 * Returns the result of {@link #getDecimalValue(Literal, BigDecimal) getDecimalValue((Literal)value,
 * fallback)} in case the supplied value is a literal, returns the fallback value otherwise.
 */
public static BigDecimal getDecimalValue(Value v, BigDecimal fallback) {
  if (v instanceof Literal) {
    return getDecimalValue((Literal)v, fallback);
  }
  else {
    return fallback;
  }
}

代码示例来源:origin: eclipse/rdf4j

/**
 * Returns the result of {@link #getDecimalValue(Literal, BigDecimal) getDecimalValue((Literal)value,
 * fallback)} in case the supplied value is a literal, returns the fallback value otherwise.
 */
public static BigDecimal getDecimalValue(Value v, BigDecimal fallback) {
  if (v instanceof Literal) {
    return getDecimalValue((Literal)v, fallback);
  }
  else {
    return fallback;
  }
}

相关文章