[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Returns the boxed class for the given class, or the class itself if already boxed or not a primitive type. For primitive unboxed types returns the boxed types, e.g. returns java.lang.Integer for passing int.class. For any other class, returns the class passed.

Namespace: net.esper.util
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function GetBoxedType ( _
	type As Type _
) As Type
C#
public static Type GetBoxedType (
	Type type
)
Visual C++
public:
static Type^ GetBoxedType (
	Type^ type
)

Parameters

type
System.Type
is the type to return the boxed type for