Class ElementKind
public class ElementKind : Enum<ElementKind>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
- Inheritance
-
ElementKind
- Implements
- Inherited Members
- Extension Methods
Constructors
ElementKind()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public ElementKind()
ElementKind(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
public ElementKind(params object[] args)
Parameters
args
object[]
Properties
ANNOTATION_TYPE
public static ElementKind ANNOTATION_TYPE { get; }
Property Value
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
CLASS
public static ElementKind CLASS { get; }
Property Value
CONSTRUCTOR
public static ElementKind CONSTRUCTOR { get; }
Property Value
ENUM
public static ElementKind ENUM { get; }
Property Value
ENUM_CONSTANT
public static ElementKind ENUM_CONSTANT { get; }
Property Value
EXCEPTION_PARAMETER
public static ElementKind EXCEPTION_PARAMETER { get; }
Property Value
FIELD
public static ElementKind FIELD { get; }
Property Value
INSTANCE_INIT
public static ElementKind INSTANCE_INIT { get; }
Property Value
INTERFACE
public static ElementKind INTERFACE { get; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
LOCAL_VARIABLE
public static ElementKind LOCAL_VARIABLE { get; }
Property Value
METHOD
public static ElementKind METHOD { get; }
Property Value
MODULE
public static ElementKind MODULE { get; }
Property Value
OTHER
public static ElementKind OTHER { get; }
Property Value
PACKAGE
public static ElementKind PACKAGE { get; }
Property Value
PARAMETER
public static ElementKind PARAMETER { get; }
Property Value
RESOURCE_VARIABLE
public static ElementKind RESOURCE_VARIABLE { get; }
Property Value
STATIC_INIT
public static ElementKind STATIC_INIT { get; }
Property Value
TYPE_PARAMETER
public static ElementKind TYPE_PARAMETER { get; }
Property Value
Methods
IsClass()
public bool IsClass()
Returns
IsField()
public bool IsField()
Returns
IsInterface()
public bool IsInterface()
Returns
ValueOf(String)
public static ElementKind ValueOf(String arg0)
Parameters
Returns
Values()
public static ElementKind[] Values()