Definition at line 41 of file RuntimePrimitiveJavaType.cs.
◆ RuntimePrimitiveJavaTypeFactory()
| IKVM.Runtime.RuntimePrimitiveJavaTypeFactory.RuntimePrimitiveJavaTypeFactory |
( |
RuntimeContext | context | ) |
|
Initializes a new instance.
- Parameters
-
Definition at line 60 of file RuntimePrimitiveJavaType.cs.
61 {
62 this.context = context ?? throw new ArgumentNullException(nameof(context));
63 BYTE =
new RuntimePrimitiveJavaType(context, context.
Types.
Byte,
"B");
64 CHAR =
new RuntimePrimitiveJavaType(context, context.
Types.
Char,
"C");
65 DOUBLE =
new RuntimePrimitiveJavaType(context, context.
Types.
Double,
"D");
66 FLOAT =
new RuntimePrimitiveJavaType(context, context.
Types.
Single,
"F");
67 INT =
new RuntimePrimitiveJavaType(context, context.
Types.
Int32,
"I");
68 LONG =
new RuntimePrimitiveJavaType(context, context.
Types.
Int64,
"J");
69 SHORT =
new RuntimePrimitiveJavaType(context, context.
Types.
Int16,
"S");
70 BOOLEAN =
new RuntimePrimitiveJavaType(context, context.
Types.
Boolean,
"Z");
71 VOID =
new RuntimePrimitiveJavaType(context, context.
Types.
Void,
"V");
72 }
Types Types
Gets the Types associated with this instance of the runtime.
The documentation for this class was generated from the following file: