Elements

class Elements : Core<Element> , FilterableByAccessFlag<Element> , CommonOperations<Element, Elements> (source)

Type-erased scope exposing common functionality.

See also

Functions

Link copied to clipboard
open override fun editor(vararg ops: TextTransformer): Action<Iter<Element>, IterValues>

internal function primarily used during graphviz dot generation

Link copied to clipboard
open override fun entity(id: Entity.Type, vararg properties: Property<Element>)
open override fun entity(id: Entity.Type, labelFormatter: LabelFormatter, vararg properties: Property<Element>)

register entity

open override fun entity(id: Entity.Type, errorIfExists: Boolean, vararg properties: Property<Element>)

new entity with label inferred from introspected bytecode element

open override fun entity(id: Entity.Type, labelFormatter: LabelFormatter, errorIfExists: Boolean, vararg properties: Property<Element>)

new entity with label from labelFormatter

Link copied to clipboard
open fun filter(string: String, invert: Boolean = false)
open override fun filter(regex: Regex, invert: Boolean)

fun filter(entity: Entity.Type)

Filters elements that belongs to entity.

open override fun filter(vararg modifiers: AccessFlags, invert: Boolean)

filter elements by access modifiers

open override fun filter(modifiers: List<AccessFlags>, invert: Boolean)

filter elements by access flags

Link copied to clipboard
open override fun label(pattern: String, vararg ops: TextTransformer): LabelFormatter

Set the entity label from a pattern, replacing any ${} variables inside pattern with values from Entity.properties.

Link copied to clipboard
open override fun log(tag: String)

When --debug is passed to the CLI, prints tag and all elements currently in scope.

Link copied to clipboard
open override fun logCount(tag: String)

When --debug is passed to the CLI, prints tag and the count of elements currently in scope.

Link copied to clipboard
open override fun property(key: String, extract: Action<Iter<Element>, IterValues>): Property<Element>
open override fun property(entity: Entity.Type, key: String, extract: Action<Iter<Element>, IterValues>)

open override fun property(key: String, strategy: PropertyStrategy, extract: Action<Iter<Element>, IterValues>): Property<Element>

Associates entity property tag with result of extract action.

open override fun property(entity: Entity.Type, key: String, strategy: PropertyStrategy, extract: Action<Iter<Element>, IterValues>)

updates existing entities with property

Link copied to clipboard
open override fun readName(shorten: Boolean): Action<Iter<Element>, IterValues>

Reads the short form name of the element

Link copied to clipboard
open override fun scope(label: String, f: Elements.() -> Unit)
open override fun scope(label: String, op: ScopeEntityPredicate, entity: Entity.Type, f: Elements.() -> Unit)
Link copied to clipboard
open operator override fun Entity.Type.set(key: String, children: Entity.Type)

This entity tracks children under the label denoted by key.

Link copied to clipboard
open override fun <E : Enum<E>> withValue(value: E): Action<Iter<Element>, IterValues>
open override fun withValue(value: Boolean): Action<Iter<Element>, IterValues>
open override fun withValue(value: Number): Action<Iter<Element>, IterValues>
open override fun withValue(value: String): Action<Iter<Element>, IterValues>

open override fun withValue(value: Entity.Type): Action<Iter<Element>, IterValues>

Associates value with entity.