Class Parameter
.NET implementations of https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Parameter.html
public class Parameter : AnnotatedElement, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IAnnotatedElement
- Inheritance
-
Parameter
- Implements
- Inherited Members
- Extension Methods
Constructors
Parameter()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public Parameter()
Parameter(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 Parameter(params object[] args)
Parameters
args
object[]
Properties
AnnotatedType
public AnnotatedType AnnotatedType { get; }
Property Value
Annotations
public Annotation[] Annotations { get; }
Property Value
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
DeclaredAnnotations
public Annotation[] DeclaredAnnotations { get; }
Property Value
DeclaringExecutable
public Executable DeclaringExecutable { 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
Modifiers
public int Modifiers { get; }
Property Value
Name
public String Name { get; }
Property Value
ParameterizedType
public Type ParameterizedType { get; }
Property Value
Type
public Class Type { get; }
Property Value
Methods
GetAnnotation<T>(Class)
public T GetAnnotation<T>(Class arg0) where T : IAnnotation, new()
Parameters
Returns
- T
T
Type Parameters
GetAnnotationsByType<T>(Class)
public T[] GetAnnotationsByType<T>(Class arg0) where T : IAnnotation, new()
Parameters
Returns
- T[]
T
Type Parameters
GetDeclaredAnnotation<T>(Class)
public T GetDeclaredAnnotation<T>(Class arg0) where T : IAnnotation, new()
Parameters
Returns
- T
T
Type Parameters
GetDeclaredAnnotationsByType<T>(Class)
public T[] GetDeclaredAnnotationsByType<T>(Class arg0) where T : IAnnotation, new()
Parameters
Returns
- T[]
T
Type Parameters
IsImplicit()
public bool IsImplicit()
Returns
IsNamePresent()
public bool IsNamePresent()
Returns
IsSynthetic()
public bool IsSynthetic()
Returns
IsVarArgs()
public bool IsVarArgs()