Package system
Class 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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e.See: https://docs.microsoft.com/en-us/dotnet/api/System.Decimal
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic String
assemblyShortName
Assembly name: System.Private.CoreLibstatic String
className
Qualified class name: System.Decimalstatic JCType
classType
The 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(Object instance)
Internal constructor.Decimal(Single value)
Decimal(UInt32 value)
Decimal(UInt64 value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Decimal
Add(Decimal d1, Decimal d2)
static Decimal
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoDecimal
, a cast assert is made to check if types are compatible.static Decimal
Ceiling(Decimal d)
static int
Compare(Decimal d1, Decimal d2)
int
CompareTo(NetObject value)
int
CompareTo(Decimal value)
static Decimal
Divide(Decimal d1, Decimal d2)
boolean
Equals(Decimal value)
static boolean
Equals(Decimal d1, Decimal d2)
static Decimal
Floor(Decimal d)
static Decimal
FromOACurrency(long cy)
static int[]
GetBits(Decimal d)
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typevoid
GetObjectData(SerializationInfo info, StreamingContext context)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.TypeCode
GetTypeCode()
static Decimal
Multiply(Decimal d1, Decimal d2)
static Decimal
Negate(Decimal d)
void
OnDeserialization(NetObject sender)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static Decimal
Parse(String s)
static Decimal
Parse(String s, NumberStyles style)
static Decimal
Parse(String s, NumberStyles style, IFormatProvider provider)
static Decimal
Parse(String s, IFormatProvider provider)
static Decimal
Remainder(Decimal d1, Decimal d2)
static Decimal
Round(Decimal d)
static Decimal
Round(Decimal d, int decimals)
static Decimal
Round(Decimal d, int decimals, MidpointRounding mode)
static Decimal
Round(Decimal d, MidpointRounding mode)
void
setJCOInstance(JCObject instance)
static Decimal
Subtract(Decimal d1, Decimal d2)
boolean
ToBoolean(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static byte
ToByte(Decimal value)
byte
ToByte(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.char
ToChar(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.DateTime
ToDateTime(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.Decimal
ToDecimal(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static double
ToDouble(Decimal d)
double
ToDouble(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static short
ToInt16(Decimal value)
short
ToInt16(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static int
ToInt32(Decimal d)
int
ToInt32(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static long
ToInt64(Decimal d)
long
ToInt64(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static long
ToOACurrency(Decimal value)
static SByte
ToSByte(Decimal value)
SByte
ToSByte(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static Single
ToSingle(Decimal d)
Single
ToSingle(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.String
ToString(String format)
String
ToString(String format, IFormatProvider provider)
String
ToString(IFormatProvider provider)
NetObject
ToType(NetType conversionType, IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static UInt16
ToUInt16(Decimal value)
UInt16
ToUInt16(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static UInt32
ToUInt32(Decimal d)
UInt32
ToUInt32(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static UInt64
ToUInt64(Decimal d)
UInt64
ToUInt64(IFormatProvider provider)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.static Decimal
Truncate(Decimal d)
static boolean
TryParse(String s, JCORefOut<Decimal> result)
static boolean
TryParse(String s, NumberStyles style, IFormatProvider provider, JCORefOut<Decimal> result)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.Decimal- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Decimal
public Decimal(Object instance) throws Throwable
Internal constructor. Use with caution- Throws:
Throwable
-
Decimal
public Decimal(double value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Decimal
public Decimal(int lo, int mid, int hi, boolean isNegative, byte scale) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Decimal
public Decimal(int[] bits) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Decimal
public Decimal(Single value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIDeserializationCallback
- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOAssemblyName
in interfaceISerializable
- Overrides:
getJCOAssemblyName
in classValueType
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIDeserializationCallback
- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOClassName
in interfaceISerializable
- Overrides:
getJCOClassName
in classValueType
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIDeserializationCallback
- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOObjectName
in interfaceISerializable
- Overrides:
getJCOObjectName
in classValueType
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIDeserializationCallback
- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Specified by:
getJCOInstance
in interfaceISerializable
- Overrides:
getJCOInstance
in classValueType
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classValueType
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIDeserializationCallback
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Specified by:
getJCOType
in interfaceISerializable
- Overrides:
getJCOType
in classValueType
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Decimal cast(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoDecimal
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Decimal
instance- Throws:
Throwable
- in case of error during cast operation
-
TryParse
public static boolean TryParse(String s, JCORefOut<Decimal> result) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, TypeInitializationException
-
TryParse
public static boolean TryParse(String s, NumberStyles style, IFormatProvider provider, JCORefOut<Decimal> result) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, CultureNotFoundException
-
ToByte
public static byte ToByte(Decimal value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OverflowException
-
ToInt16
public static short ToInt16(Decimal value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OverflowException
-
CompareTo
public int CompareTo(NetObject value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
ToInt32
public static int ToInt32(Decimal d) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException
-
ToInt64
public static long ToInt64(Decimal d) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException
-
ToOACurrency
public static long ToOACurrency(Decimal value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OverflowException
-
ToSByte
public static SByte ToSByte(Decimal value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OverflowException
-
Add
public static Decimal Add(Decimal d1, Decimal d2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Ceiling
public static Decimal Ceiling(Decimal d) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Divide
public static Decimal Divide(Decimal d1, Decimal d2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, DivideByZeroException
-
Floor
public static Decimal Floor(Decimal d) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
FromOACurrency
public static Decimal FromOACurrency(long cy) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Multiply
public static Decimal Multiply(Decimal d1, Decimal d2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Parse
public static Decimal Parse(String s, NumberStyles style, IFormatProvider provider) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, CultureNotFoundException
-
Parse
public static Decimal Parse(String s, NumberStyles style) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, CultureNotFoundException, TypeInitializationException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
ObjectDisposedException
RankException
CultureNotFoundException
TypeInitializationException
-
Parse
public static Decimal Parse(String s, IFormatProvider provider) throws Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, CultureNotFoundException
-
Parse
public static Decimal Parse(String s) throws Throwable, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ArgumentNullException, ObjectDisposedException, RankException, CultureNotFoundException, TypeInitializationException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
ArgumentNullException
ObjectDisposedException
RankException
CultureNotFoundException
TypeInitializationException
-
Remainder
public static Decimal Remainder(Decimal d1, Decimal d2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, DivideByZeroException
-
Round
public static Decimal Round(Decimal d, int decimals, MidpointRounding mode) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Round
public static Decimal Round(Decimal d, int decimals) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Round
public static Decimal Round(Decimal d, MidpointRounding mode) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Round
public static Decimal Round(Decimal d) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Subtract
public static Decimal Subtract(Decimal d1, Decimal d2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Truncate
public static Decimal Truncate(Decimal d) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException
-
ToString
public String ToString(IFormatProvider provider) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException, FormatException, InvalidOperationException, ArrayTypeMismatchException
-
ToString
public String ToString(String format, IFormatProvider provider) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException, ArrayTypeMismatchException
-
ToString
public String ToString(String format) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, TypeInitializationException, FormatException
-
ToUInt16
public static UInt16 ToUInt16(Decimal value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OverflowException
-
ToUInt32
public static UInt32 ToUInt32(Decimal d) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException
-
ToUInt64
public static UInt64 ToUInt64(Decimal d) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException
-
ToBoolean
@Deprecated public boolean ToBoolean(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToByte
@Deprecated public byte ToByte(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToChar
@Deprecated public char ToChar(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToDouble
@Deprecated public double ToDouble(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToInt16
@Deprecated public short ToInt16(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToInt32
@Deprecated public int ToInt32(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToInt64
@Deprecated public long ToInt64(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToSByte
@Deprecated public SByte ToSByte(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToSingle
@Deprecated public Single ToSingle(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToDateTime
@Deprecated public DateTime ToDateTime(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToDecimal
@Deprecated public Decimal ToDecimal(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToType
@Deprecated public NetObject ToType(NetType conversionType, IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToUInt16
@Deprecated public UInt16 ToUInt16(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToUInt32
@Deprecated public UInt32 ToUInt32(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
ToUInt64
@Deprecated public UInt64 ToUInt64(IFormatProvider provider) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIConvertible method available in IConvertible to obtain an object with an invocable method- Throws:
Throwable
-
GetObjectData
@Deprecated public void GetObjectData(SerializationInfo info, StreamingContext context) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToISerializable method available in ISerializable to obtain an object with an invocable method- Specified by:
GetObjectData
in interfaceISerializable
- Throws:
Throwable
-
OnDeserialization
@Deprecated public void OnDeserialization(NetObject sender) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToIDeserializationCallback method available in IDeserializationCallback to obtain an object with an invocable method- Specified by:
OnDeserialization
in interfaceIDeserializationCallback
- Throws:
Throwable
-
-