getField

open fun getField(name: List<String>): ShakeField?(source)

Retrieves a field by a path of names.

Return

The found field, or null if not found.

Parameters

name

A list of names representing the path to the field.


open fun getField(name: Array<String>): ShakeField?(source)

Retrieves a field by an array of names.

Return

The found field, or null if not found.

Parameters

name

An array of names representing the path to the field.


open fun getField(name: String): ShakeField?(source)

Retrieves a field by its full name.

Return

The found field, or null if not found.

Parameters

name

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