- map(Supplier<S>, Function<S, T>) - Static method in class org.starchartlabs.alloy.core.Suppliers
-
Returns a new supplier which calls the provided supplier and then applies the provided function to map the result
to a new representation.
- mapBuilder() - Static method in class org.starchartlabs.alloy.core.collections.MoreCollections
-
Creates a builder for streamlined initialization of maps
- memoize(Supplier<T>) - Static method in class org.starchartlabs.alloy.core.Suppliers
-
Returns a supplier which caches the instance retrieved during the first call to get() and returns that
value on subsequent calls to get()
- memoizeWithExpiration(Supplier<T>, long, TimeUnit) - Static method in class org.starchartlabs.alloy.core.Suppliers
-
Returns a supplier that caches the instance supplied by the delegate and removes the cached value after the
specified time has passed.
- MoreCollections - Class in org.starchartlabs.alloy.core.collections
-
Provides methods for streamlining and reducing boilerplate in relation to operations related to Java collections
- MoreCollections() - Constructor for class org.starchartlabs.alloy.core.collections.MoreCollections
-
- MoreCollections.MapBuilder<K,V> - Class in org.starchartlabs.alloy.core.collections
-
Builder for streamlined initialization of maps
- MoreObjects - Class in org.starchartlabs.alloy.core
-
Provides methods for streamlining and reducing boilerplate in relation to basic Object operations
- MoreObjects() - Constructor for class org.starchartlabs.alloy.core.MoreObjects
-
- MoreObjects.ToStringHelper - Class in org.starchartlabs.alloy.core
-
- MoreSpliterators - Class in org.starchartlabs.alloy.core.collections
-
Provides methods for streamlining and reducing boilerplate for operations related to Java Spliterators
- MoreSpliterators() - Constructor for class org.starchartlabs.alloy.core.collections.MoreSpliterators
-
- mutable() - Method in class org.starchartlabs.alloy.core.collections.MoreCollections.MapBuilder
-
Configures the resulting map to be mutable/modifiable