MCPcopy Index your code
hub / github.com/apache/groovy / toBigInteger

Method toBigInteger

src/main/java/groovy/util/Node.java:881–886  ·  view source on GitHub ↗

Converts the text of this GPathResult to a BigInteger object. @return the GPathResult, converted to a BigInteger

()

Source from the content-addressed store, hash-verified

879 * @return the GPathResult, converted to a <code>BigInteger</code>
880 */
881 public BigInteger toBigInteger() {
882 if(textIsEmptyOrNull()){
883 return null;
884 }
885 return StringGroovyMethods.toBigInteger((CharSequence)text());
886 }
887
888 /**
889 * The key used for text content when a node has both attributes and text.

Callers 3

calcSizeMethod · 0.45
isIntegralMethod · 0.45
sizeMethod · 0.45

Calls 3

textIsEmptyOrNullMethod · 0.95
toBigIntegerMethod · 0.95
textMethod · 0.95

Tested by

no test coverage detected