Entries

abstract class Entries<E : Event<*, *, *>>(numEvents: Int)(source)

Abstraction for the Event implementation's companion object.

Functions are protected to selectively expose what is necessary by overriding and changing visibility to public along with the @JvmStatic annotation.

Parameters

numEvents

The number of event types to use as an initial capacity value for the LinkedHashSet supplied to lazyEntries.

Inheritors

Constructors

Link copied to clipboard
protected constructor(numEvents: Int)

Properties

Link copied to clipboard
protected abstract val lazyEntries: ThisBlock<LinkedHashSet<E>>

For inheritors of Entries to implement.

Functions

Link copied to clipboard
protected open fun entries(): Set<E>
Link copied to clipboard
protected open fun valueOf(name: String): E
Link copied to clipboard
protected open fun valueOfOrNull(name: String): E?