Uses of Interface
org.glassfish.jersey.internal.util.collection.UnsafeValue
Packages that use UnsafeValue
Package
Description
Common set of Jersey collection classes.
-
Uses of UnsafeValue in org.glassfish.jersey.internal.util.collection
Subinterfaces of UnsafeValue in org.glassfish.jersey.internal.util.collectionModifier and TypeInterfaceDescriptioninterfaceLazyUnsafeValue<T,E extends Throwable> Lazily initializedunsafe value.Methods in org.glassfish.jersey.internal.util.collection that return UnsafeValueModifier and TypeMethodDescriptionstatic <T,E extends Throwable>
UnsafeValue<T,E> Values.emptyUnsafe()static <T,E extends Throwable>
UnsafeValue<T,E> Values.throwing(E throwable) Get a new "throwing"unsafe value providerwhoseget()method always throws the exception supplied to thethrowableparameter.static <T,E extends Throwable>
UnsafeValue<T,E> Values.unsafe(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 UnsafeValueModifier and TypeMethodDescriptionstatic <T,E extends Throwable>
LazyUnsafeValue<T,E> Values.lazy(UnsafeValue<T, E> delegate) Get a new lazily initializedunsafe value provider.