MCPcopy Create free account
hub / github.com/BaseXdb/basex / get

Method get

basex-core/src/main/java/org/basex/query/value/item/Dec.java:79–81  ·  view source on GitHub ↗

Constructor. @param value big decimal value @return value

(final BigDecimal value)

Source from the content-addressed store, hash-verified

77 * @return value
78 */
79 public static Dec get(final BigDecimal value) {
80 return value.signum() == 0 ? ZERO : new Dec(value);
81 }
82
83 @Override
84 public byte[] string() {

Callers 15

decimalMethod · 0.95
decimalOrIntegerMethod · 0.95
numericLiteralMethod · 0.95
itemMethod · 0.95
evalMethod · 0.95
FnSystemPropertiesClass · 0.95
itemMethod · 0.95
itemMethod · 0.95
itemMethod · 0.95
itemMethod · 0.95
itemMethod · 0.95
rangeMethod · 0.95

Calls

no outgoing calls

Tested by 1

decimalMethod · 0.76