Uses of Interface
org.glassfish.jersey.internal.util.collection.UnsafeValue
Packages that use UnsafeValue
Package
Description
Jersey client-side classes.
Common set of Jersey collection classes.
-
Uses of UnsafeValue in org.glassfish.jersey.client
Constructors in org.glassfish.jersey.client with parameters of type UnsafeValueModifierConstructorDescriptionprotected
JerseyClient
(Configuration config, UnsafeValue<SSLContext, IllegalStateException> sslContextProvider, HostnameVerifier verifier) Create a new Jersey client instance.protected
JerseyClient
(Configuration config, UnsafeValue<SSLContext, IllegalStateException> sslContextProvider, HostnameVerifier verifier, DefaultSslContextProvider defaultSslContextProvider) Create a new Jersey client instance. -
Uses of UnsafeValue in org.glassfish.jersey.internal.util.collection
Subinterfaces of UnsafeValue in org.glassfish.jersey.internal.util.collectionModifier and TypeInterfaceDescriptioninterface
LazyUnsafeValue<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 provider
whoseget()
method always throws the exception supplied to thethrowable
parameter.static <T,
E extends Throwable>
UnsafeValue<T,E> Values.unsafe
(T value) Get a new constantvalue provider
whoseget()
method always returns the instance supplied to thevalue
parameter.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
.