Package microsoft.visualbasic
Class Information
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.visualbasic.Information
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Information extends NetObject
The base .NET class managing Microsoft.VisualBasic.Information, Microsoft.VisualBasic.Core, Version=13.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.Information
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.Core, Version=13.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasic.Corestatic java.lang.String
className
Qualified class name: Microsoft.VisualBasic.Informationstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Information()
Information(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Information
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoInformation
, a cast assert is made to check if types are compatible.static int
Erl()
static ErrObject
Err()
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 boolean
IsArray(NetObject VarName)
static boolean
IsDate(NetObject Expression)
static boolean
IsDBNull(NetObject Expression)
static boolean
IsError(NetObject Expression)
static boolean
IsNothing(NetObject Expression)
static boolean
IsNumeric(NetObject Expression)
static boolean
IsReference(NetObject Expression)
static int
LBound(Array Array, int Rank)
static int
QBColor(int Color)
static int
RGB(int Red, int Green, int Blue)
void
setJCOInstance(JCObject instance)
static java.lang.String
SystemTypeName(java.lang.String VbName)
static java.lang.String
TypeName(NetObject VarName)
static int
UBound(Array Array, int Rank)
static VariantType
VarType(NetObject VarName)
static java.lang.String
VbTypeName(java.lang.String UrtName)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic.Core, Version=13.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic.Core- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: Microsoft.VisualBasic.Information- 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 Information cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoInformation
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Information
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsArray
public static boolean IsArray(NetObject VarName) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsDate
public static boolean IsDate(NetObject Expression) throws java.lang.Throwable, CultureNotFoundException, PlatformNotSupportedException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, OverflowException, NotSupportedException
-
IsDBNull
public static boolean IsDBNull(NetObject Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsError
public static boolean IsError(NetObject Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsNothing
public static boolean IsNothing(NetObject Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsNumeric
public static boolean IsNumeric(NetObject Expression) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, ArgumentNullException, FormatException, OverflowException, OutOfMemoryException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
CultureNotFoundException
ArgumentNullException
FormatException
OverflowException
OutOfMemoryException
ArrayTypeMismatchException
-
IsReference
public static boolean IsReference(NetObject Expression) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Erl
public static int Erl() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
IndexOutOfRangeException
-
LBound
public static int LBound(Array Array, int Rank) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, FormatException, RankException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
FormatException
RankException
-
QBColor
public static int QBColor(int Color) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException
-
RGB
public static int RGB(int Red, int Green, int Blue) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, ExternalException
-
UBound
public static int UBound(Array Array, int Rank) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, FormatException, RankException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
FormatException
RankException
IndexOutOfRangeException
-
Err
public static ErrObject Err() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
IndexOutOfRangeException
-
VarType
public static VariantType VarType(NetObject VarName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
-
SystemTypeName
public static java.lang.String SystemTypeName(java.lang.String VbName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, CultureNotFoundException
-
TypeName
public static java.lang.String TypeName(NetObject VarName) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException, OutOfMemoryException, CultureNotFoundException, InvalidOperationException
-
VbTypeName
public static java.lang.String VbTypeName(java.lang.String UrtName) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
-