java.lang.Object
swim.structure.Item
swim.structure.Value
swim.structure.Expression
swim.structure.Selector
swim.structure.selector.KeysSelector
A
Selector
that, when evaluated
against some Interpreter
, yields all of the "keys" of the top Item
in the
interpreter's frame stack. The "keys" of an Item
item
are
defined to be either the sole ((Field) item).key
if
item
is a Field
, or every such key of every Field
in
item
if item
is a Record
; "keys" are not defined for any
other type.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe means to chainSelectors
.protected int
<T> Output<T>
boolean
<T> T
forSelected
(Interpreter interpreter, Selectee<T> callback) int
hashCode()
mapSelected
(Interpreter interpreter, Selectee<Item> transform) substitute
(Interpreter interpreter) then()
Returns theSelector
that thisSelector
uses to match sub-selections.int
Returns the heterogeneous sort order of thisItem
.Methods inherited from class swim.structure.Selector
children, compareTo, debug, descendants, evaluate, filter, filter, get, get, getAttr, getAttr, getItem, getItem, identity, invoke, isConstant, keys, literal, precedence, values
Methods inherited from class swim.structure.Expression
and, and, bitwiseAnd, bitwiseAnd, bitwiseNot, bitwiseOr, bitwiseOr, bitwiseXor, bitwiseXor, conditional, conditional, divide, divide, eq, eq, ge, ge, gt, gt, inverse, le, le, lt, lt, minus, minus, modulo, modulo, ne, ne, negative, not, or, or, plus, plus, positive, times, times
Methods inherited from class swim.structure.Value
absent, alias, body, booleanValue, booleanValue, branch, builder, byteValue, byteValue, charValue, charValue, commit, contains, containsKey, containsKey, containsValue, doubleValue, doubleValue, empty, extant, flattened, floatValue, floatValue, fromObject, getField, getField, getSlot, getSlot, head, header, headers, integerValue, integerValue, intValue, intValue, isAliased, isDefined, isDefinite, isDistinct, isMutable, key, keyEquals, lambda, length, longValue, longValue, numberValue, numberValue, removed, removed, shortValue, shortValue, stringValue, stringValue, tag, tail, target, toValue, unflattened
Methods inherited from class swim.structure.Item
appended, appended, appended, appended, appended, appended, appended, appended, cast, cast, coerce, coerce, concat, display, evaluate, globalScope, iterator, max, min, prepended, prepended, prepended, prepended, prepended, prepended, prepended, prepended, substitute, toString, updated, updated, updated, updated, updated, updated, updated, updated, updated, updated, updated, updated, updated, updated, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedAttr, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot, updatedSlot
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
KeysSelector
-
-
Method Details
-
then
Description copied from class:Selector
Returns theSelector
that thisSelector
uses to match sub-selections. -
forSelected
Description copied from class:Selector
Evaluatescallback.selected
against theItems
that match thisSelector's
selection criteria. That is, it pushes suchItems
tointerpreter
, then invokescallback
against it. To support chainedSelectors
, this is a recursive procedure that invokesforSelected
throughthis.then
wherever it exists (which it always does outside ofIdentitySelector
); we define "subselection" to be such an invocation.- Specified by:
forSelected
in classSelector
- Returns:
- the result of executing
callback
from the context of the lastSelector
in the chain formed bySelector then
fields.
-
mapSelected
- Specified by:
mapSelected
in classSelector
-
substitute
- Overrides:
substitute
in classItem
-
andThen
Description copied from class:Selector
The means to chainSelectors
. By intention, this is NOT a strict functional composition: for twoSelectors
s1
ands2
,s1.andThen(s2)
DOES NOT NECESSARILY return a newSelector
s3
such thats3.evaluate(args)
is equivalent tos2.evaluate(s1.evaluate(args))
.The reason for this is that for
Selectors
likeChildrenSelector
that yield (logical) collections, we wish to invoke the nextSelector
, say aGetSelector
, against every result. Under strict functional rules,ChildrenSelector.andThen(someGetSelector).evaluate(args)
would instead return at most one defined value regardless of the number of children. -
typeOrder
public int typeOrder()Description copied from class:Item
Returns the heterogeneous sort order of thisItem
. Used to impose a total order on the set of all items. When comparing two items of different types, the items order according to theirtypeOrder
. -
compareTo
-
equals
-
hashCode
public int hashCode() -
debugThen
-