Converts the text of this GPathResult to a BigInteger object. @return the GPathResult, converted to a BigInteger
()
| 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. |
no test coverage detected