getClass

open override fun getClass(name: List<String>): CreationShakeClass?(source)

Retrieves a class by a path of names.

Return

The found class, or null if not found.

Parameters

name

A list of names representing the path to the class.


open override fun getClass(name: Array<String>): CreationShakeClass?(source)

Retrieves a class by an array of names.

Return

The found class, or null if not found.

Parameters

name

An array of names representing the path to the class.


open override fun getClass(clz: String): CreationShakeClass?(source)

Retrieves a class by its full name.

Return

The found class, or null if not found.

Parameters

clz

The full name of the class, separated by dots or slashes.