All Classes and Interfaces
Class
Description
A functional interface for observing state changes
and performing some action in response.
Defines an association between keys and values
as an immutable value object where the values
are accessed by the keys in a map-like fashion.
This is a marker interface for property event channels.
An event is something that can be triggered and reacted through
Observable
s
created by the Event.observable()
method.This is a sort of marker interface for
Var
/Val
property item types,
which tells the property that it wants to use the object returned by the HasId.id()
method
as a unique identifier for its item when determining the ValDelegate.change()
type.The
Lens
interface defines an access and update operation on an individual part of a nested and immutable
data structure.A checked exception thrown when an item is missing from a
Maybe
object.This represents an event that can be observed but not triggered.
An immutable value object representing a pair
of two generic values.
A problem is a wrapper for information describing an issue
that can be reported and attached to a
Result
.This class is technically an internal class and should not be used directly.
Describes how a
Vars
instance was mutated.A
SequenceDiff
object holds meta information about a Tuple
instance
that describes how the Tuple
was transformed from its previous state.This interface is a sort of marker interface for
Tuple
implementations that can provide a SequenceDiff
object that
describes the difference between the current tuple and a previous one (if any),
in terms of a SequenceChange
, the index of the change, and the number of changes.A set of constants that describe how a property item has changed.
Creates instances of the various property types in the Sprouts library.
An immutable collection of ordered items of the same type
This class can be thought of as an immutable array with an API designed for functional programming and robust handling of
T
(see Tuple.type()
),
whose items can be iterated over and accessed through their indices.This class can be thought of as an immutable array with an API designed for functional programming and robust handling of
null
values.A read only wrapper around an item which can be mapped to a weakly referenced
Use
Viewable
to then be observed for changes using Action
s registered through the
Viewable.onChange(Channel, Action)
method,
where the Channel
is used to distinguish between changes from
different sources (usually application layers like the view model or the view).Use
Val.view()
to access a simple no-op live view of the item of this property
and register change listeners on it to react to state changes.A read only API of a list of read-only viewed properties that can be observed,
iterated over, mapped, filtered, turned into a stream, and more.
A mutable wrapper for an item which can also be mapped to a weakly referenced
Use
Viewable
to
be observed for changes using Action
s registered through the Viewable.onChange(Channel, Action)
method,
where the Channel
is used to distinguish between changes from
different sources (usually application layers like the view model or the view).Use
Val.view()
to access a simple no-op live view of the item of this property
and register change listeners on it to react to state changes.A mutable list of mutable properties designed for MVVM, that can be observed for changes
through a
Vals.view()
by registering Subscriber
types on it like
Observer
s and Action
s.This is a value object representing a unique ID consisting
of two numbers, a lineage and succession, allowing you to identify something
and also determine the order in which something was created
and updated.
A read only live view on a delegated item which can be observed for changes
using
Action
s registered through the Viewable.onChange(Channel, Action)
method,
where the Channel
is used to distinguish between changes from
different sources (usually application layers like the view model or the view).A read-only live view on a delegated list of items which can be observed for changes
using
Action
s registered through the Viewables.onChange(Action)
method.A weak action is an extension of the
Action
interface
which defines a method for clearing the action
and a method for retrieving the owner of the action.A weak observer is an extension of the
Observer
interface
which defines a method for clearing its state (setting it to null)
and a method for retrieving the owner of the observer.