Package sprouts.impl
Class Sprouts
java.lang.Object
sprouts.impl.Sprouts
- All Implemented Interfaces:
SproutsFactory
Exposes an API for configuring the
So technically speaking, this is a configurable singleton, so be careful when using it as it effectively maintains global + mutable state!
SproutsFactory
,
which serves implementations of the various property types in the Sprouts library,
like Event
, Val
, Var
, Vals
and Vars
.
The methods implemented here are used by the various factory methods of the sprouts API like
Var.of(Object)
, Vals.of(Object, Object[])
, Result.of(Object)
...So technically speaking, this is a configurable singleton, so be careful when using it as it effectively maintains global + mutable state!
-
Method Summary
Modifier and TypeMethodDescription<O,
D> WeakAction <O, D> actionOfWeak
(O owner, BiConsumer<O, D> action) <K,
V> Association <K, V> associationOf
(Class<K> keyType, Class<V> valueType) The default channel used for change events.The default id for properties which do not have an id explicitly specified.The default channel used forObservable
events, registered through theObservable.subscribe(Observer)
method.<T> ValDelegate
<T> delegateOf
(Val<T> source, Channel channel, SingleChange change, @Nullable T newValue, @Nullable T oldValue) <T> ValsDelegate
<T> delegateOf
(Vals<T> source, SequenceChange changeType, int index, Vals<T> newValues, Vals<T> oldValues) event()
eventOf
(Event.Executor executor) static SproutsFactory
factory()
ASproutsFactory
is used by the various factory methods of this API likeVar.of(Object)
,Vals.of(Object, Object[])
,Result.of(Object)
...The regexPattern
used to validate property ids.<T,
B> Var <B> <T,
B> Var <B> <T,
B> Var <B> lensOfNullable
(Class<B> type, Var<T> source, Lens<T, B> lens) <O> WeakObserver
<O> observerOfWeak
(O owner, Consumer<O> action) <V> Result
<V> <V> Result
<V> <V> Result
<V> <V> Result
<V> <V> Result
<V> <V> Result
<V> <V> Result
<V> resultOf
(V value) <V> Result
<V> resultOfList
(Class<V> type, List<V> list) resultOfList
(Class<V> type, List<V> list, Iterable<Problem> problems) resultOfList
(Class<V> type, Problem problem) <V> Result
<V> resultOfTry
(Class<V> type, Supplier<V> supplier) static void
setFactory
(SproutsFactory factory) Sets the factory to be used by the various factory methods of this API likeVar.of(Object)
,Vals.of(Object, Object[])
,Result.of(Object)
...<T> Tuple
<T> <T> Tuple
<T> <T> Tuple
<T> <T> Tuple
<T> <T> Tuple
<T> <T> Tuple
<T> tupleOf
(T first, T... rest) <T> Tuple
<@Nullable T> tupleOfNullable
(Class<T> type) <T> Tuple
<@Nullable T> tupleOfNullable
(Class<T> type, @Nullable T... values) <T> Tuple
<@Nullable T> tupleOfNullable
(Class<T> type, Iterable<@Nullable T> iterable) <T> Tuple
<@Nullable T> tupleOfNullable
(Class<T> type, Maybe<@Nullable T>... maybes) <T> Tuple
<@Nullable T> tupleOfNullable
(Maybe<@Nullable T> first, Maybe<@Nullable T>... rest) <T> Val
<T> <T> Val
<T> valOf
(T item) <T> Val
<@Nullable T> <T> Val
<@Nullable T> valOfNullable
(Class<T> type, @Nullable T item) <T> Val
<@Nullable T> valOfNullable
(Val<@Nullable T> toBeCopied) <T> Vals
<T> <T> Vals
<T> <T> Vals
<T> <T> Vals
<T> <T> Vals
<T> <T> Vals
<T> <T> Vals
<T> valsOf
(T first, T... rest) <T> Vals
<@Nullable T> valsOfNullable
(Class<T> type) <T> Vals
<@Nullable T> valsOfNullable
(Class<T> type, @Nullable T... items) <T> Vals
<@Nullable T> valsOfNullable
(Class<T> type, Val<@Nullable T>... vals) <T> Vals
<@Nullable T> valsOfNullable
(Class<T> type, Vals<@Nullable T> vals) <T> Vals
<@Nullable T> valsOfNullable
(Val<@Nullable T> first, Val<@Nullable T>... rest) <T,
V extends T>
Var<T> <T> Var
<T> varOf
(T item) <T> Var
<T> <T> Var
<T> varOfNullable
(Class<T> type, @Nullable T item) <T> Vars
<T> <T> Vars
<T> <T> Vars
<T> <T> Vars
<T> <T> Vars
<T> <T> Vars
<T> varsOf
(T first, T... rest) <T> Vars
<@Nullable T> varsOfNullable
(Class<T> type) <T> Vars
<@Nullable T> varsOfNullable
(Class<T> type, @Nullable T... values) <T> Vars
<T> varsOfNullable
(Class<T> type, Iterable<Var<T>> vars) <T> Vars
<@Nullable T> varsOfNullable
(Class<T> type, Var<@Nullable T>... vars) <T> Vars
<@Nullable T> varsOfNullable
(Var<@Nullable T> first, Var<@Nullable T>... rest) viewOf
(Class<R> type, Val<T> first, Val<U> second, BiFunction<T, U, R> combiner) <T,
U> Viewable <T> <T> Viewable
<T> viewOf
(Val<T> first, Val<U> second, BiFunction<T, U, @NonNull T> combiner) <T> Viewables
<T> <T,
U> Viewable <U> <T,
U> Viewables <U> viewOfNullable
(Class<R> type, Val<T> first, Val<U> second, BiFunction<T, U, @Nullable R> combiner) <T,
U> Viewable <@Nullable U> viewOfNullable
(Class<U> type, Val<T> source, Function<T, @Nullable U> mapper) viewOfNullable
(Val<T> first, Val<U> second, BiFunction<T, U, @Nullable T> combiner) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface sprouts.impl.SproutsFactory
maybeOf, maybeOf, maybeOfNull, maybeOfNullable, maybeOfNullable
-
Method Details
-
factory
ASproutsFactory
is used by the various factory methods of this API likeVar.of(Object)
,Vals.of(Object, Object[])
,Result.of(Object)
... to create instances of these properties.
You can plug in your own factory implementation through thesetFactory(SproutsFactory)
method, where you can then serve your own implementations of the various property types in the Sprouts library.- Returns:
- The default factory for creating instances of the various property types in the Sprouts library.
-
setFactory
Sets the factory to be used by the various factory methods of this API likeVar.of(Object)
,Vals.of(Object, Object[])
,Result.of(Object)
... to create instances of these properties.
You can use a customSproutsFactory
to instantiate and serve your own implementations of the various property types in the Sprouts library.
WARNING: This is a global + mutable state, so be careful when using it
as it will have global side effects on the various factory methods of this API.- Parameters:
factory
- The factory to be used by the various factory methods of this API.- Throws:
NullPointerException
- if the factory is null.
-
delegateOf
public <T> ValDelegate<T> delegateOf(Val<T> source, Channel channel, SingleChange change, @Nullable T newValue, @Nullable T oldValue) - Specified by:
delegateOf
in interfaceSproutsFactory
-
delegateOf
public <T> ValsDelegate<T> delegateOf(Vals<T> source, SequenceChange changeType, int index, Vals<T> newValues, Vals<T> oldValues) - Specified by:
delegateOf
in interfaceSproutsFactory
-
event
- Specified by:
event
in interfaceSproutsFactory
-
eventOf
- Specified by:
eventOf
in interfaceSproutsFactory
-
valOfNullable
- Specified by:
valOfNullable
in interfaceSproutsFactory
-
valOfNull
- Specified by:
valOfNull
in interfaceSproutsFactory
-
valOf
- Specified by:
valOf
in interfaceSproutsFactory
-
valOf
- Specified by:
valOf
in interfaceSproutsFactory
-
valOfNullable
- Specified by:
valOfNullable
in interfaceSproutsFactory
-
viewOf
- Specified by:
viewOf
in interfaceSproutsFactory
-
viewOf
public <T extends @Nullable Object,U extends @Nullable Object> Viewable<@NonNull T> viewOf(Val<T> first, Val<U> second, BiFunction<T, U, @NonNull T> combiner) - Specified by:
viewOf
in interfaceSproutsFactory
-
viewOfNullable
public <T extends @Nullable Object,U extends @Nullable Object> Viewable<@Nullable T> viewOfNullable(Val<T> first, Val<U> second, BiFunction<T, U, @Nullable T> combiner) - Specified by:
viewOfNullable
in interfaceSproutsFactory
-
viewOf
public <T extends @Nullable Object,U extends @Nullable Object, Viewable<R> viewOfR> (Class<R> type, Val<T> first, Val<U> second, BiFunction<T, U, R> combiner) - Specified by:
viewOf
in interfaceSproutsFactory
-
viewOfNullable
public <T extends @Nullable Object,U extends @Nullable Object, Viewable<@Nullable R> viewOfNullableR> (Class<R> type, Val<T> first, Val<U> second, BiFunction<T, U, @Nullable R> combiner) - Specified by:
viewOfNullable
in interfaceSproutsFactory
-
viewOf
- Specified by:
viewOf
in interfaceSproutsFactory
-
viewOf
- Specified by:
viewOf
in interfaceSproutsFactory
-
viewOf
public <T,U> Viewables<U> viewOf(U nullObject, U errorObject, Vals<T> source, Function<T, @Nullable U> mapper) - Specified by:
viewOf
in interfaceSproutsFactory
-
viewOf
public <T,U> Viewable<U> viewOf(U nullObject, U errorObject, Val<T> source, Function<T, @Nullable U> mapper) - Specified by:
viewOf
in interfaceSproutsFactory
-
viewOfNullable
public <T,U> Viewable<@Nullable U> viewOfNullable(Class<U> type, Val<T> source, Function<T, @Nullable U> mapper) - Specified by:
viewOfNullable
in interfaceSproutsFactory
-
lensOf
- Specified by:
lensOf
in interfaceSproutsFactory
-
lensOf
- Specified by:
lensOf
in interfaceSproutsFactory
-
lensOfNullable
- Specified by:
lensOfNullable
in interfaceSproutsFactory
-
varOfNullable
- Specified by:
varOfNullable
in interfaceSproutsFactory
-
varOfNull
- Specified by:
varOfNull
in interfaceSproutsFactory
-
varOf
- Specified by:
varOf
in interfaceSproutsFactory
-
varOf
- Specified by:
varOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOf
- Specified by:
valsOf
in interfaceSproutsFactory
-
valsOfNullable
- Specified by:
valsOfNullable
in interfaceSproutsFactory
-
valsOfNullable
- Specified by:
valsOfNullable
in interfaceSproutsFactory
-
valsOfNullable
- Specified by:
valsOfNullable
in interfaceSproutsFactory
-
valsOfNullable
- Specified by:
valsOfNullable
in interfaceSproutsFactory
-
valsOfNullable
- Specified by:
valsOfNullable
in interfaceSproutsFactory
-
varsOfNullable
- Specified by:
varsOfNullable
in interfaceSproutsFactory
-
tupleOf
- Specified by:
tupleOf
in interfaceSproutsFactory
-
tupleOf
- Specified by:
tupleOf
in interfaceSproutsFactory
-
tupleOf
- Specified by:
tupleOf
in interfaceSproutsFactory
-
tupleOf
- Specified by:
tupleOf
in interfaceSproutsFactory
-
tupleOf
- Specified by:
tupleOf
in interfaceSproutsFactory
-
tupleOf
- Specified by:
tupleOf
in interfaceSproutsFactory
-
tupleOfNullable
- Specified by:
tupleOfNullable
in interfaceSproutsFactory
-
tupleOfNullable
- Specified by:
tupleOfNullable
in interfaceSproutsFactory
-
tupleOfNullable
- Specified by:
tupleOfNullable
in interfaceSproutsFactory
-
tupleOfNullable
- Specified by:
tupleOfNullable
in interfaceSproutsFactory
-
tupleOfNullable
- Specified by:
tupleOfNullable
in interfaceSproutsFactory
-
associationOf
- Specified by:
associationOf
in interfaceSproutsFactory
-
varsOf
- Specified by:
varsOf
in interfaceSproutsFactory
-
varsOf
- Specified by:
varsOf
in interfaceSproutsFactory
-
varsOf
- Specified by:
varsOf
in interfaceSproutsFactory
-
varsOf
- Specified by:
varsOf
in interfaceSproutsFactory
-
varsOf
- Specified by:
varsOf
in interfaceSproutsFactory
-
varsOf
- Specified by:
varsOf
in interfaceSproutsFactory
-
varsOfNullable
- Specified by:
varsOfNullable
in interfaceSproutsFactory
-
varsOfNullable
- Specified by:
varsOfNullable
in interfaceSproutsFactory
-
varsOfNullable
- Specified by:
varsOfNullable
in interfaceSproutsFactory
-
varsOfNullable
- Specified by:
varsOfNullable
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOf
- Specified by:
resultOf
in interfaceSproutsFactory
-
resultOfList
- Specified by:
resultOfList
in interfaceSproutsFactory
-
resultOfList
- Specified by:
resultOfList
in interfaceSproutsFactory
-
resultOfList
- Specified by:
resultOfList
in interfaceSproutsFactory
-
resultOfTry
- Specified by:
resultOfTry
in interfaceSproutsFactory
-
actionOfWeak
- Specified by:
actionOfWeak
in interfaceSproutsFactory
-
observerOfWeak
- Specified by:
observerOfWeak
in interfaceSproutsFactory
-
defaultId
Description copied from interface:SproutsFactory
The default id for properties which do not have an id explicitly specified. The id of a property is used to identify it in the system or as part of a view model and convert it into other data formats like key/value based data stores.- Specified by:
defaultId
in interfaceSproutsFactory
- Returns:
- The default id for properties which do not have an id explicitly specified.
This must never return
null
and it is recommended to be a constant or cached object due to this method being called frequently.
-
idPattern
Description copied from interface:SproutsFactory
The regexPattern
used to validate property ids. All ids must match this pattern.- Specified by:
idPattern
in interfaceSproutsFactory
- Returns:
- The regex
Pattern
used to validate property ids. This must never returnnull
and it is recommended to be a constant or cached object due to this method being called frequently.
-
defaultChannel
Description copied from interface:SproutsFactory
The default channel used for change events. This channel is used to give events a chanel when no channel is explicitly specified.- Specified by:
defaultChannel
in interfaceSproutsFactory
- Returns:
- The default channel used for change events.
This must never return
null
and it is recommended to be a constant or cached object due to this method being called frequently.
-
defaultObservableChannel
Description copied from interface:SproutsFactory
The default channel used forObservable
events, registered through theObservable.subscribe(Observer)
method.- Specified by:
defaultObservableChannel
in interfaceSproutsFactory
- Returns:
- The default channel used for change events.
This must never return
null
and it is recommended to be a constant or cached object due to this method being called frequently.
-