public class JCVoid extends Object
void return value on the JVM side.
When a CLR method has a void return type, the bridge returns an instance
of JCVoid instead of null or a JCObject, allowing callers
to distinguish between a void return and an actual null reference returned
by the CLR method.
In most application code you will not need to inspect the return value of void
CLR methods; JCVoid is primarily used internally by the bridge and by
generated wrapper code.
public JCVoid()
JCVoid sentinel instance.