Click or drag to resize

IDeclaredJavaType Interface

Generic interface for all types implemented managing declared information

Namespace: MASES.JCOBridge.C2JBridge.JVMInterop
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.5.17.240622-f0da58d62b7e98f73f32432917df8eb1a5f062a3
Syntax
public interface IDeclaredJavaType : IJavaType, 
	IDisposable

The IDeclaredJavaType type exposes the following members.

Properties
 NameDescription
Public propertyIsArray if the IJavaType is an array
(Inherited from IJavaType)
Public propertyIsPrimitiveConvertible if the IJavaType is primitive convertible, i.e. it is bool, byte, ... and string
(Inherited from IJavaType)
Public propertyIsRawPrimitive if the IJavaType is a raw primitive type, i.e. it is boolean, byte, and so on
(Inherited from IJavaType)
Public propertyJniClassName The name in the JNI form
(Inherited from IJavaType)
Public propertyName The type name
(Inherited from IJavaType)
Public propertySuperClass The superclass IJavaType of this IJavaType
(Inherited from IJavaType)
Top
Methods
 NameDescription
Public methodDeclaredInvoke(String, Object) Invokes a static member on this IJavaType
Public methodDeclaredInvokeTReturn(String, Object) Invokes a static member on this IJavaType
Public methodDeclaredNew Creates a new object of this IJavaType
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Public methodGetDeclaredField Gets a static field
Public methodGetField(String) Gets a static field
(Inherited from IJavaType)
Public methodInvoke(String, Object) Invokes a static member on this IJavaType using methodName and search criteria based on args
(Inherited from IJavaType)
Public methodInvokeWithSignature(String, String, Object) Invokes a static member on this IJavaType using methodName and search criteria based on signature
(Inherited from IJavaType)
Public methodNew Creates a new object of this IJavaType with search criteria based on args
(Inherited from IJavaType)
Public methodNewWithSignature Creates a new object of this IJavaType with search criteria based on signature
(Inherited from IJavaType)
Public methodSetDeclaredField Sets a static field
Public methodSetField Sets a static field
(Inherited from IJavaType)
Top
Extension Methods
 NameDescription
Public Extension MethodIsPrimitiveConvertible Returns true if the class represents a primitive type
(Defined by JCOBridgeExtensions)
Public Extension MethodIsRawPrimitive Returns true if the class represents a primitive type
(Defined by JCOBridgeExtensions)
Top
See Also