A2uiCoreComponentDefinitionCollection


public sealed interface A2uiCoreComponentDefinitionCollection extends List


An immutable, indexed collection of A2uiCoreComponentDefinitions registered within an A2uiCoreCatalog.

Provides list-based access that enables iterator-free iteration using indices, as well as lookup by component name using the index operator.

Summary

Public methods

abstract A2uiCoreComponentDefinition

Retrieves a component definition by its unique name.

Inherited methods

From kotlin.collections.Collection
From kotlin.collections.Iterable
From kotlin.collections.List

Public methods

get

Added in 1.0.0-alpha01
abstract A2uiCoreComponentDefinition get(@NonNull String name)

Retrieves a component definition by its unique name.

Parameters
@NonNull String name

The name of the component.

Returns
A2uiCoreComponentDefinition

The component definition, or null if it is not registered in this collection.