public class BigInteger extends ValueType
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Numerics.BigInteger
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Runtime.Numerics, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
static java.lang.String |
assemblyShortName
Assembly name: System.Runtime.Numerics
|
static java.lang.String |
className
Qualified class name: System.Numerics.BigInteger
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
BigInteger() |
BigInteger(byte[] value) |
BigInteger(Decimal value) |
BigInteger(double value) |
BigInteger(int value) |
BigInteger(long value) |
BigInteger(java.lang.Object instance)
Internal constructor.
|
BigInteger(Single value) |
BigInteger(UInt32 value) |
BigInteger(UInt64 value) |
| Modifier and Type | Method and Description |
|---|---|
static BigInteger |
Abs(BigInteger value) |
static BigInteger |
Add(BigInteger left,
BigInteger right) |
static BigInteger |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into BigInteger, a cast assert is made to check if types are compatible. |
static BigInteger |
Clamp(BigInteger value,
BigInteger min,
BigInteger max) |
static int |
Compare(BigInteger left,
BigInteger right) |
int |
CompareTo(BigInteger other) |
int |
CompareTo(long other) |
int |
CompareTo(NetObject obj) |
int |
CompareTo(UInt64 other) |
static BigInteger |
CopySign(BigInteger value,
BigInteger sign) |
static BigInteger |
Divide(BigInteger dividend,
BigInteger divisor) |
static BigInteger |
DivRem(BigInteger dividend,
BigInteger divisor,
JCORefOut<BigInteger> remainder) |
boolean |
Equals(BigInteger other) |
boolean |
Equals(long other) |
boolean |
Equals(UInt64 other) |
long |
GetBitLength() |
int |
GetByteCount(boolean isUnsigned) |
boolean |
getIsEven() |
boolean |
getIsOne() |
boolean |
getIsPowerOfTwo() |
boolean |
getIsZero() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
static BigInteger |
getMinusOne() |
static BigInteger |
getOne() |
int |
getSign() |
static BigInteger |
getZero() |
static BigInteger |
GreatestCommonDivisor(BigInteger left,
BigInteger right) |
static boolean |
IsEvenInteger(BigInteger value) |
static boolean |
IsNegative(BigInteger value) |
static boolean |
IsOddInteger(BigInteger value) |
static boolean |
IsPositive(BigInteger value) |
static boolean |
IsPow2(BigInteger value) |
static BigInteger |
LeadingZeroCount(BigInteger value) |
static double |
Log(BigInteger value) |
static double |
Log(BigInteger value,
double baseValue) |
static double |
Log10(BigInteger value) |
static BigInteger |
Log2(BigInteger value) |
static BigInteger |
Max(BigInteger left,
BigInteger right) |
static BigInteger |
MaxMagnitude(BigInteger x,
BigInteger y) |
static BigInteger |
Min(BigInteger left,
BigInteger right) |
static BigInteger |
MinMagnitude(BigInteger x,
BigInteger y) |
static BigInteger |
ModPow(BigInteger value,
BigInteger exponent,
BigInteger modulus) |
static BigInteger |
Multiply(BigInteger left,
BigInteger right) |
static BigInteger |
Negate(BigInteger value) |
static BigInteger |
Parse(java.lang.String value) |
static BigInteger |
Parse(java.lang.String value,
IFormatProvider provider) |
static BigInteger |
Parse(java.lang.String value,
NumberStyles style) |
static BigInteger |
Parse(java.lang.String value,
NumberStyles style,
IFormatProvider provider) |
static BigInteger |
PopCount(BigInteger value) |
static BigInteger |
Pow(BigInteger value,
int exponent) |
static BigInteger |
Remainder(BigInteger dividend,
BigInteger divisor) |
static BigInteger |
RotateLeft(BigInteger value,
int rotateAmount) |
static BigInteger |
RotateRight(BigInteger value,
int rotateAmount) |
void |
setJCOInstance(JCObject instance) |
static BigInteger |
Subtract(BigInteger left,
BigInteger right) |
byte[] |
ToByteArray() |
byte[] |
ToByteArray(boolean isUnsigned,
boolean isBigEndian) |
java.lang.String |
ToString(IFormatProvider provider) |
java.lang.String |
ToString(java.lang.String format) |
java.lang.String |
ToString(java.lang.String format,
IFormatProvider provider) |
static BigInteger |
TrailingZeroCount(BigInteger value) |
static boolean |
TryParse(java.lang.String s,
IFormatProvider provider,
JCORefOut<BigInteger> result) |
static boolean |
TryParse(java.lang.String value,
JCORefOut<BigInteger> result) |
static boolean |
TryParse(java.lang.String value,
NumberStyles style,
IFormatProvider provider,
JCORefOut<BigInteger> result) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public BigInteger()
throws java.lang.Throwable
java.lang.Throwablepublic BigInteger(byte[] value)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
NotSupportedException,
ArrayTypeMismatchException,
CultureNotFoundException,
ObjectDisposedException,
IndexOutOfRangeException
public BigInteger(Decimal value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public BigInteger(double value)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
OverflowException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionOverflowExceptionpublic BigInteger(int value)
throws java.lang.Throwable
java.lang.Throwablepublic BigInteger(long value)
throws java.lang.Throwable
java.lang.Throwablepublic BigInteger(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic BigInteger(Single value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, OverflowException
public BigInteger(UInt32 value) throws java.lang.Throwable
java.lang.Throwablepublic BigInteger(UInt64 value) throws java.lang.Throwable
java.lang.Throwablepublic static BigInteger Abs(BigInteger value) throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, OverflowException
java.lang.ThrowableIndexOutOfRangeExceptionPlatformNotSupportedExceptionOverflowExceptionpublic static BigInteger Add(BigInteger left, BigInteger right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
public static BigInteger cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into BigInteger, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedBigInteger instancejava.lang.Throwable - in case of error during cast operationpublic static BigInteger Clamp(BigInteger value, BigInteger min, BigInteger max) throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException
public static int Compare(BigInteger left, BigInteger right) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionpublic int CompareTo(BigInteger other) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException
public int CompareTo(long other)
throws java.lang.Throwable
java.lang.Throwablepublic int CompareTo(NetObject obj) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException
public int CompareTo(UInt64 other) throws java.lang.Throwable
java.lang.Throwablepublic static BigInteger CopySign(BigInteger value, BigInteger sign) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionOverflowExceptionpublic static BigInteger Divide(BigInteger dividend, BigInteger divisor) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
public static BigInteger DivRem(BigInteger dividend, BigInteger divisor, JCORefOut<BigInteger> remainder) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OverflowException
public boolean Equals(BigInteger other) throws java.lang.Throwable, PlatformNotSupportedException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException
java.lang.ThrowablePlatformNotSupportedExceptionArrayTypeMismatchExceptionInvalidOperationExceptionNotSupportedExceptionpublic boolean Equals(long other)
throws java.lang.Throwable
java.lang.Throwablepublic boolean Equals(UInt64 other) throws java.lang.Throwable
java.lang.Throwablepublic long GetBitLength()
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionpublic int GetByteCount(boolean isUnsigned)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
PlatformNotSupportedException,
OverflowException,
ArrayTypeMismatchException,
ArgumentNullException
public boolean getIsEven()
throws java.lang.Throwable
java.lang.Throwablepublic boolean getIsOne()
throws java.lang.Throwable
java.lang.Throwablepublic boolean getIsPowerOfTwo()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArrayTypeMismatchException
public boolean getIsZero()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class ValueTypeString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class ValueTypeString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class ValueTypeObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class ValueTypeString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class ValueTypeJCType representing the CLR Type of the instantiated Classpublic static BigInteger getMinusOne() throws java.lang.Throwable
java.lang.Throwablepublic static BigInteger getOne() throws java.lang.Throwable
java.lang.Throwablepublic int getSign()
throws java.lang.Throwable
java.lang.Throwablepublic static BigInteger getZero() throws java.lang.Throwable
java.lang.Throwablepublic static BigInteger GreatestCommonDivisor(BigInteger left, BigInteger right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, OverflowException, IndexOutOfRangeException, ArrayTypeMismatchException
public static boolean IsEvenInteger(BigInteger value) throws java.lang.Throwable
java.lang.Throwablepublic static boolean IsNegative(BigInteger value) throws java.lang.Throwable
java.lang.Throwablepublic static boolean IsOddInteger(BigInteger value) throws java.lang.Throwable
java.lang.Throwablepublic static boolean IsPositive(BigInteger value) throws java.lang.Throwable
java.lang.Throwablepublic static boolean IsPow2(BigInteger value) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, InvalidOperationException
public static BigInteger LeadingZeroCount(BigInteger value) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException
java.lang.ThrowablePlatformNotSupportedExceptionArgumentExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionpublic static double Log(BigInteger value) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException
java.lang.ThrowablePlatformNotSupportedExceptionArgumentExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionpublic static double Log(BigInteger value, double baseValue) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionpublic static double Log10(BigInteger value) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException
java.lang.ThrowablePlatformNotSupportedExceptionArgumentExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionpublic static BigInteger Log2(BigInteger value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException
public static BigInteger Max(BigInteger left, BigInteger right) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionpublic static BigInteger MaxMagnitude(BigInteger x, BigInteger y) throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, OverflowException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException
public static BigInteger Min(BigInteger left, BigInteger right) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionpublic static BigInteger MinMagnitude(BigInteger x, BigInteger y) throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, OverflowException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException
public static BigInteger ModPow(BigInteger value, BigInteger exponent, BigInteger modulus) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OverflowException
public static BigInteger Multiply(BigInteger left, BigInteger right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
public static BigInteger Negate(BigInteger value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionOverflowExceptionpublic static BigInteger Parse(java.lang.String value) throws java.lang.Throwable, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, RankException, ArrayTypeMismatchException, TypeInitializationException, OverflowException, InvalidOperationException
java.lang.ThrowableCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionArgumentExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionRankExceptionArrayTypeMismatchExceptionTypeInitializationExceptionOverflowExceptionInvalidOperationExceptionpublic static BigInteger Parse(java.lang.String value, IFormatProvider provider) throws java.lang.Throwable, PlatformNotSupportedException, CultureNotFoundException, NullReferenceException, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, OverflowException, ArrayTypeMismatchException
public static BigInteger Parse(java.lang.String value, NumberStyles style) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, ArgumentOutOfRangeException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, TypeInitializationException, InvalidOperationException, OverflowException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionArgumentOutOfRangeExceptionRankExceptionIndexOutOfRangeExceptionArrayTypeMismatchExceptionTypeInitializationExceptionInvalidOperationExceptionOverflowExceptionpublic static BigInteger Parse(java.lang.String value, NumberStyles style, IFormatProvider provider) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, NullReferenceException, OverflowException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionCultureNotFoundExceptionNullReferenceExceptionOverflowExceptionpublic static BigInteger PopCount(BigInteger value) throws java.lang.Throwable
java.lang.Throwablepublic static BigInteger Pow(BigInteger value, int exponent) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OverflowException
public static BigInteger Remainder(BigInteger dividend, BigInteger divisor) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, ArrayTypeMismatchException, OverflowException
public static BigInteger RotateLeft(BigInteger value, int rotateAmount) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
public static BigInteger RotateRight(BigInteger value, int rotateAmount) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
public void setJCOInstance(JCObject instance)
setJCOInstance in class ValueTypepublic static BigInteger Subtract(BigInteger left, BigInteger right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
public byte[] ToByteArray()
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
IndexOutOfRangeException,
PlatformNotSupportedException,
OverflowException,
ArrayTypeMismatchException,
ArgumentOutOfRangeException,
ArgumentNullException,
FormatException
public byte[] ToByteArray(boolean isUnsigned,
boolean isBigEndian)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
PlatformNotSupportedException,
OverflowException,
ArrayTypeMismatchException,
ArgumentNullException
public java.lang.String ToString(IFormatProvider provider) throws java.lang.Throwable, PlatformNotSupportedException, CultureNotFoundException, NullReferenceException, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, OverflowException, ArrayTypeMismatchException, ArgumentNullException
public java.lang.String ToString(java.lang.String format)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
ArgumentOutOfRangeException,
RankException,
IndexOutOfRangeException,
ArrayTypeMismatchException,
TypeInitializationException,
InvalidOperationException,
FormatException,
OverflowException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionArgumentOutOfRangeExceptionRankExceptionIndexOutOfRangeExceptionArrayTypeMismatchExceptionTypeInitializationExceptionInvalidOperationExceptionFormatExceptionOverflowExceptionpublic java.lang.String ToString(java.lang.String format,
IFormatProvider provider)
throws java.lang.Throwable,
PlatformNotSupportedException,
CultureNotFoundException,
NullReferenceException,
NotSupportedException,
ArgumentException,
ArgumentOutOfRangeException,
InvalidOperationException,
FormatException,
OverflowException,
ArrayTypeMismatchException,
ArgumentNullException
public static BigInteger TrailingZeroCount(BigInteger value) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException
java.lang.ThrowablePlatformNotSupportedExceptionArgumentExceptionArgumentOutOfRangeExceptionpublic static boolean TryParse(java.lang.String s,
IFormatProvider provider,
JCORefOut<BigInteger> result)
throws java.lang.Throwable,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
ArgumentException,
InvalidOperationException,
IndexOutOfRangeException,
OverflowException,
ArgumentOutOfRangeException,
ArrayTypeMismatchException
public static boolean TryParse(java.lang.String value,
JCORefOut<BigInteger> result)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
ArgumentOutOfRangeException,
RankException,
IndexOutOfRangeException,
ArrayTypeMismatchException,
TypeInitializationException,
InvalidOperationException,
OverflowException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionArgumentOutOfRangeExceptionRankExceptionIndexOutOfRangeExceptionArrayTypeMismatchExceptionTypeInitializationExceptionInvalidOperationExceptionOverflowExceptionpublic static boolean TryParse(java.lang.String value,
NumberStyles style,
IFormatProvider provider,
JCORefOut<BigInteger> result)
throws java.lang.Throwable,
PlatformNotSupportedException,
CultureNotFoundException,
NullReferenceException,
NotSupportedException,
ArgumentException,
ArgumentOutOfRangeException,
ObjectDisposedException,
InvalidOperationException,
OverflowException,
ArrayTypeMismatchException