getClass

open fun getClass(name: List<String>): ShakeClass?(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 fun getClass(name: Array<String>): ShakeClass?(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 fun getClass(name: String): ShakeClass?(source)

Retrieves a class by its name.

Return

The found class, or null if not found.

Parameters

name

The name of the class to retrieve.