Class Operators
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.visualbasic.compilerservices.Operators
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Operators extends NetObject
The base .NET class managing Microsoft.VisualBasic.CompilerServices.Operators, Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.CompilerServices.Operators
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.String
assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasicstatic java.lang.String
className
Qualified class name: Microsoft.VisualBasic.CompilerServices.Operatorsstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NetObject
AddObject(NetObject Left, NetObject Right)
static NetObject
AndObject(NetObject Left, NetObject Right)
static Operators
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoOperators
, a cast assert is made to check if types are compatible.static int
CompareObject(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
CompareObjectEqual(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
CompareObjectGreater(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
CompareObjectGreaterEqual(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
CompareObjectLess(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
CompareObjectLessEqual(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
CompareObjectNotEqual(NetObject Left, NetObject Right, boolean TextCompare)
static int
CompareString(java.lang.String Left, java.lang.String Right, boolean TextCompare)
static NetObject
ConcatenateObject(NetObject Left, NetObject Right)
static boolean
ConditionalCompareObjectEqual(NetObject Left, NetObject Right, boolean TextCompare)
static boolean
ConditionalCompareObjectGreater(NetObject Left, NetObject Right, boolean TextCompare)
static boolean
ConditionalCompareObjectGreaterEqual(NetObject Left, NetObject Right, boolean TextCompare)
static boolean
ConditionalCompareObjectLess(NetObject Left, NetObject Right, boolean TextCompare)
static boolean
ConditionalCompareObjectLessEqual(NetObject Left, NetObject Right, boolean TextCompare)
static boolean
ConditionalCompareObjectNotEqual(NetObject Left, NetObject Right, boolean TextCompare)
static NetObject
DivideObject(NetObject Left, NetObject Right)
static NetObject
ExponentObject(NetObject Left, NetObject Right)
static NetObject
FallbackInvokeUserDefinedOperator(NetObject vbOp, NetObject[] Arguments)
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic NetObject
IntDivideObject(NetObject Left, NetObject Right)
static NetObject
LeftShiftObject(NetObject Operand, NetObject Amount)
static NetObject
LikeObject(NetObject Source, NetObject Pattern, CompareMethod CompareOption)
static boolean
LikeString(java.lang.String Source, java.lang.String Pattern, CompareMethod CompareOption)
static NetObject
ModObject(NetObject Left, NetObject Right)
static NetObject
MultiplyObject(NetObject Left, NetObject Right)
static NetObject
NegateObject(NetObject Operand)
static NetObject
NotObject(NetObject Operand)
static NetObject
OrObject(NetObject Left, NetObject Right)
static NetObject
PlusObject(NetObject Operand)
static NetObject
RightShiftObject(NetObject Operand, NetObject Amount)
void
setJCOInstance(JCObject instance)
static NetObject
SubtractObject(NetObject Left, NetObject Right)
static NetObject
XorObject(NetObject Left, NetObject Right)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: Microsoft.VisualBasic.CompilerServices.Operators- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Operators cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoOperators
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Operators
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
ConditionalCompareObjectEqual
public static boolean ConditionalCompareObjectEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ConditionalCompareObjectGreater
public static boolean ConditionalCompareObjectGreater(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ConditionalCompareObjectGreaterEqual
public static boolean ConditionalCompareObjectGreaterEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ConditionalCompareObjectLess
public static boolean ConditionalCompareObjectLess(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ConditionalCompareObjectLessEqual
public static boolean ConditionalCompareObjectLessEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ConditionalCompareObjectNotEqual
public static boolean ConditionalCompareObjectNotEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
LikeString
public static boolean LikeString(java.lang.String Source, java.lang.String Pattern, CompareMethod CompareOption) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, ArgumentException, NotSupportedException, MissingManifestResourceException, FormatException
-
CompareObject
public static int CompareObject(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
-
CompareString
public static int CompareString(java.lang.String Left, java.lang.String Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, TypeLoadException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException
-
AddObject
public static NetObject AddObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, TypeInitializationException, InvalidOperationException, IndexOutOfRangeException, OverflowException, FormatException, CultureNotFoundException, OutOfMemoryException, NullReferenceException, ArgumentException, ObjectDisposedException, NotSupportedException, NotImplementedException, MissingManifestResourceException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
TypeInitializationException
InvalidOperationException
IndexOutOfRangeException
OverflowException
FormatException
CultureNotFoundException
OutOfMemoryException
NullReferenceException
ArgumentException
ObjectDisposedException
NotSupportedException
NotImplementedException
MissingManifestResourceException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
AndObject
public static NetObject AndObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, AbandonedMutexException, NotSupportedException, InvalidOperationException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, NullReferenceException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ObjectDisposedException
AbandonedMutexException
NotSupportedException
InvalidOperationException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
NullReferenceException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
CompareObjectEqual
public static NetObject CompareObjectEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
CompareObjectGreater
public static NetObject CompareObjectGreater(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
CompareObjectGreaterEqual
public static NetObject CompareObjectGreaterEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
CompareObjectLess
public static NetObject CompareObjectLess(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
CompareObjectLessEqual
public static NetObject CompareObjectLessEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
CompareObjectNotEqual
public static NetObject CompareObjectNotEqual(NetObject Left, NetObject Right, boolean TextCompare) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException, ArgumentOutOfRangeException, ObjectDisposedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, TypeInitializationException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotSupportedException
ArgumentOutOfRangeException
ObjectDisposedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
TypeInitializationException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ConcatenateObject
public static NetObject ConcatenateObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, NotSupportedException, NotImplementedException, RankException, ArgumentOutOfRangeException, InternalErrorException, InvalidCastException, NullReferenceException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException, OverflowException, FormatException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
NotSupportedException
NotImplementedException
RankException
ArgumentOutOfRangeException
InternalErrorException
InvalidCastException
NullReferenceException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
OverflowException
FormatException
IndexOutOfRangeException
-
DivideObject
public static NetObject DivideObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
ExponentObject
public static NetObject ExponentObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
FallbackInvokeUserDefinedOperator
public static NetObject FallbackInvokeUserDefinedOperator(NetObject vbOp, NetObject[] Arguments) throws java.lang.Throwable, OverflowException, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException
- Throws:
java.lang.Throwable
OverflowException
ArgumentNullException
ArgumentException
CultureNotFoundException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
-
IntDivideObject
public static NetObject IntDivideObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, AbandonedMutexException, NotSupportedException, InvalidOperationException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, RankException, InternalErrorException, NullReferenceException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ObjectDisposedException
AbandonedMutexException
NotSupportedException
InvalidOperationException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
RankException
InternalErrorException
NullReferenceException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
LeftShiftObject
public static NetObject LeftShiftObject(NetObject Operand, NetObject Amount) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, NotSupportedException, NotImplementedException, RankException, ArgumentOutOfRangeException, InternalErrorException, InvalidCastException, NullReferenceException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
NotSupportedException
NotImplementedException
RankException
ArgumentOutOfRangeException
InternalErrorException
InvalidCastException
NullReferenceException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
ObjectDisposedException
FormatException
OverflowException
-
LikeObject
public static NetObject LikeObject(NetObject Source, NetObject Pattern, CompareMethod CompareOption) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, NotSupportedException, NotImplementedException, RankException, ArgumentOutOfRangeException, InternalErrorException, InvalidCastException, NullReferenceException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException, OverflowException, FormatException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
NotSupportedException
NotImplementedException
RankException
ArgumentOutOfRangeException
InternalErrorException
InvalidCastException
NullReferenceException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
OverflowException
FormatException
IndexOutOfRangeException
-
ModObject
public static NetObject ModObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
MultiplyObject
public static NetObject MultiplyObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
NegateObject
public static NetObject NegateObject(NetObject Operand) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, CultureNotFoundException, NotSupportedException, InvalidOperationException, FormatException, NullReferenceException, OverflowException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, NotImplementedException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
ArgumentNullException
CultureNotFoundException
NotSupportedException
InvalidOperationException
FormatException
NullReferenceException
OverflowException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
NotImplementedException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
NotObject
public static NetObject NotObject(NetObject Operand) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, AbandonedMutexException, NotSupportedException, InvalidOperationException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, RankException, InternalErrorException, NullReferenceException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ObjectDisposedException
AbandonedMutexException
NotSupportedException
InvalidOperationException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
RankException
InternalErrorException
NullReferenceException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
OrObject
public static NetObject OrObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, AbandonedMutexException, NotSupportedException, InvalidOperationException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, NullReferenceException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ObjectDisposedException
AbandonedMutexException
NotSupportedException
InvalidOperationException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
NullReferenceException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
PlusObject
public static NetObject PlusObject(NetObject Operand) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
RightShiftObject
public static NetObject RightShiftObject(NetObject Operand, NetObject Amount) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, NotSupportedException, NotImplementedException, RankException, ArgumentOutOfRangeException, InternalErrorException, InvalidCastException, NullReferenceException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
NotSupportedException
NotImplementedException
RankException
ArgumentOutOfRangeException
InternalErrorException
InvalidCastException
NullReferenceException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
ObjectDisposedException
FormatException
OverflowException
-
SubtractObject
public static NetObject SubtractObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FormatException, NullReferenceException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidCastException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
CultureNotFoundException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FormatException
NullReferenceException
OverflowException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidCastException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
XorObject
public static NetObject XorObject(NetObject Left, NetObject Right) throws java.lang.Throwable, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, AbandonedMutexException, NotSupportedException, InvalidOperationException, OverflowException, NotImplementedException, MissingManifestResourceException, InvalidCastException, NullReferenceException, RankException, InternalErrorException, MissingMemberException, MemberAccessException, TargetException, TargetParameterCountException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ObjectDisposedException
AbandonedMutexException
NotSupportedException
InvalidOperationException
OverflowException
NotImplementedException
MissingManifestResourceException
InvalidCastException
NullReferenceException
RankException
InternalErrorException
MissingMemberException
MemberAccessException
TargetException
TargetParameterCountException
-
-