Package system
Class Decimal
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.ValueType
-
- system.Decimal
-
- All Implemented Interfaces:
IJCOBridgeReflected,IDeserializationCallback,ISerializable
public class Decimal extends ValueType implements ISerializable, IDeserializationCallback
The base .NET class managing System.Decimal, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Decimal
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic java.lang.StringassemblyShortNameAssembly name: System.Private.CoreLibstatic java.lang.StringclassNameQualified class name: System.Decimalstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Decimal()Decimal(double value)Decimal(int value)Decimal(int[] bits)Decimal(int lo, int mid, int hi, boolean isNegative, byte scale)Decimal(long value)Decimal(java.lang.Object instance)Internal constructor.Decimal(Single value)Decimal(UInt32 value)Decimal(UInt64 value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DecimalAbs(Decimal value)static DecimalAdd(Decimal d1, Decimal d2)static Decimalcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoDecimal, a cast assert is made to check if types are compatible.static DecimalCeiling(Decimal d)static DecimalClamp(Decimal value, Decimal min, Decimal max)static intCompare(Decimal d1, Decimal d2)intCompareTo(NetObject value)intCompareTo(Decimal value)static DecimalCopySign(Decimal value, Decimal sign)static DecimalDivide(Decimal d1, Decimal d2)booleanEquals(Decimal value)static booleanEquals(Decimal d1, Decimal d2)static DecimalFloor(Decimal d)static DecimalFromOACurrency(long cy)static int[]GetBits(Decimal d)java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypebytegetScale()TypeCodeGetTypeCode()static booleanIsCanonical(Decimal value)static booleanIsEvenInteger(Decimal value)static booleanIsInteger(Decimal value)static booleanIsNegative(Decimal value)static booleanIsOddInteger(Decimal value)static booleanIsPositive(Decimal value)static DecimalMax(Decimal x, Decimal y)static DecimalMaxMagnitude(Decimal x, Decimal y)static DecimalMin(Decimal x, Decimal y)static DecimalMinMagnitude(Decimal x, Decimal y)static DecimalMultiply(Decimal d1, Decimal d2)static DecimalNegate(Decimal d)static DecimalParse(java.lang.String s)static DecimalParse(java.lang.String s, NumberStyles style)static DecimalParse(java.lang.String s, NumberStyles style, IFormatProvider provider)static DecimalParse(java.lang.String s, IFormatProvider provider)static DecimalRemainder(Decimal d1, Decimal d2)static DecimalRound(Decimal d)static DecimalRound(Decimal d, int decimals)static DecimalRound(Decimal d, int decimals, MidpointRounding mode)static DecimalRound(Decimal d, MidpointRounding mode)voidsetJCOInstance(JCObject instance)static intSign(Decimal d)static DecimalSubtract(Decimal d1, Decimal d2)static byteToByte(Decimal value)static doubleToDouble(Decimal d)static shortToInt16(Decimal value)static intToInt32(Decimal d)static longToInt64(Decimal d)static longToOACurrency(Decimal value)static SByteToSByte(Decimal value)static SingleToSingle(Decimal d)java.lang.StringToString(java.lang.String format)java.lang.StringToString(java.lang.String format, IFormatProvider provider)java.lang.StringToString(IFormatProvider provider)static UInt16ToUInt16(Decimal value)static UInt32ToUInt32(Decimal d)static UInt64ToUInt64(Decimal d)static DecimalTruncate(Decimal d)static booleanTryParse(java.lang.String s, JCORefOut<Decimal> result)static booleanTryParse(java.lang.String s, NumberStyles style, IFormatProvider provider, JCORefOut<Decimal> result)static booleanTryParse(java.lang.String s, IFormatProvider provider, JCORefOut<Decimal> result)-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.runtime.serialization.IDeserializationCallback
OnDeserialization
-
Methods inherited from interface system.runtime.serialization.ISerializable
GetObjectData
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Decimal- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Decimal
public Decimal(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
Decimal
public Decimal() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Decimal
public Decimal(double value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OverflowException, IndexOutOfRangeException
-
Decimal
public Decimal(int lo, int mid, int hi, boolean isNegative, byte scale) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
-
Decimal
public Decimal(int value) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Decimal
public Decimal(int[] bits) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException
-
Decimal
public Decimal(long value) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Decimal
public Decimal(Single value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OverflowException, IndexOutOfRangeException
-
Decimal
public Decimal(UInt32 value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Decimal
public Decimal(UInt64 value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIDeserializationCallback- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Specified by:
getJCOAssemblyNamein interfaceISerializable- Overrides:
getJCOAssemblyNamein classValueType- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIDeserializationCallback- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Specified by:
getJCOClassNamein interfaceISerializable- Overrides:
getJCOClassNamein classValueType- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIDeserializationCallback- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Specified by:
getJCOObjectNamein interfaceISerializable- Overrides:
getJCOObjectNamein classValueType- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIDeserializationCallback- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Specified by:
getJCOInstancein interfaceISerializable- Overrides:
getJCOInstancein classValueType- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classValueType
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIDeserializationCallback- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Specified by:
getJCOTypein interfaceISerializable- Overrides:
getJCOTypein classValueType- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static Decimal cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoDecimal, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
Decimalinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
Equals
public static boolean Equals(Decimal d1, Decimal d2) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
Equals
public boolean Equals(Decimal value) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
IsCanonical
public static boolean IsCanonical(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, IndexOutOfRangeException
- Throws:
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionIndexOutOfRangeException
-
IsEvenInteger
public static boolean IsEvenInteger(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
IsInteger
public static boolean IsInteger(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
IsNegative
public static boolean IsNegative(Decimal value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsOddInteger
public static boolean IsOddInteger(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
IsPositive
public static boolean IsPositive(Decimal value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
TryParse
public static boolean TryParse(java.lang.String s, JCORefOut<Decimal> result) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
TryParse
public static boolean TryParse(java.lang.String s, NumberStyles style, IFormatProvider provider, JCORefOut<Decimal> result) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
TryParse
public static boolean TryParse(java.lang.String s, IFormatProvider provider, JCORefOut<Decimal> result) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
ToByte
public static byte ToByte(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, OverflowException
-
ToDouble
public static double ToDouble(Decimal d) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException
-
ToInt16
public static short ToInt16(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, OverflowException
-
Compare
public static int Compare(Decimal d1, Decimal d2) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
CompareTo
public int CompareTo(Decimal value) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
CompareTo
public int CompareTo(NetObject value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
-
Sign
public static int Sign(Decimal d) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToInt32
public static int ToInt32(Decimal d) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException
-
GetBits
public static int[] GetBits(Decimal d) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToInt64
public static long ToInt64(Decimal d) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException
-
ToOACurrency
public static long ToOACurrency(Decimal value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
-
ToSByte
public static SByte ToSByte(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, OverflowException
-
ToSingle
public static Single ToSingle(Decimal d) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
Abs
public static Decimal Abs(Decimal value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Add
public static Decimal Add(Decimal d1, Decimal d2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
-
Ceiling
public static Decimal Ceiling(Decimal d) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
Clamp
public static Decimal Clamp(Decimal value, Decimal min, Decimal max) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, FormatException
-
CopySign
public static Decimal CopySign(Decimal value, Decimal sign) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Divide
public static Decimal Divide(Decimal d1, Decimal d2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, DivideByZeroException, OverflowException, IndexOutOfRangeException
-
Floor
public static Decimal Floor(Decimal d) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
FromOACurrency
public static Decimal FromOACurrency(long cy) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
-
Max
public static Decimal Max(Decimal x, Decimal y) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
MaxMagnitude
public static Decimal MaxMagnitude(Decimal x, Decimal y) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
Min
public static Decimal Min(Decimal x, Decimal y) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
MinMagnitude
public static Decimal MinMagnitude(Decimal x, Decimal y) throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
Multiply
public static Decimal Multiply(Decimal d1, Decimal d2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
-
Negate
public static Decimal Negate(Decimal d) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Parse
public static Decimal Parse(java.lang.String s, NumberStyles style, IFormatProvider provider) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OverflowException
-
Parse
public static Decimal Parse(java.lang.String s, NumberStyles style) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, OverflowException
-
Parse
public static Decimal Parse(java.lang.String s, IFormatProvider provider) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, OverflowException
-
Parse
public static Decimal Parse(java.lang.String s) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, FormatException, OverflowException
-
Remainder
public static Decimal Remainder(Decimal d1, Decimal d2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, DivideByZeroException, IndexOutOfRangeException, OverflowException
-
Round
public static Decimal Round(Decimal d, int decimals, MidpointRounding mode) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException
-
Round
public static Decimal Round(Decimal d, int decimals) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException
-
Round
public static Decimal Round(Decimal d, MidpointRounding mode) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException
-
Round
public static Decimal Round(Decimal d) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException
-
Subtract
public static Decimal Subtract(Decimal d1, Decimal d2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, OverflowException
-
Truncate
public static Decimal Truncate(Decimal d) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException
-
ToString
public java.lang.String ToString(IFormatProvider provider) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ArrayTypeMismatchException, InvalidOperationException
-
ToString
public java.lang.String ToString(java.lang.String format, IFormatProvider provider) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ArrayTypeMismatchException, InvalidOperationException
-
ToString
public java.lang.String ToString(java.lang.String format) throws java.lang.Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, TypeInitializationException, FormatException
-
GetTypeCode
public TypeCode GetTypeCode() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToUInt16
public static UInt16 ToUInt16(Decimal value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, OverflowException
-
ToUInt32
public static UInt32 ToUInt32(Decimal d) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException
-
ToUInt64
public static UInt64 ToUInt64(Decimal d) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException
-
getScale
public byte getScale() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
-