Uses of Interface
org.glassfish.jersey.internal.util.collection.Value
-
Packages that use Value Package Description org.glassfish.jersey.internal.util.collection Common set of Jersey collection classes. -
-
Uses of Value in org.glassfish.jersey.internal.util.collection
Subinterfaces of Value in org.glassfish.jersey.internal.util.collection Modifier and Type Interface Description interfaceLazyValue<T>Lazily initializedvalue.interfaceRef<T>A possibly mutable value reference.Methods in org.glassfish.jersey.internal.util.collection that return Value Modifier and Type Method Description static <T> Value<T>Values. eager(Value<T> delegate)Get a new eagerly initializedvalue provider.static <T> Value<T>Values. empty()static <T> Value<T>Values. of(T value)Get a new constantvalue providerwhoseget()method always returns the instance supplied to thevalueparameter.Methods in org.glassfish.jersey.internal.util.collection with parameters of type Value Modifier and Type Method Description static <T> Value<T>Values. eager(Value<T> delegate)Get a new eagerly initializedvalue provider.static <T> LazyValue<T>Values. lazy(Value<T> delegate)Get a new lazily initializedvalue provider.
-