Uses of Interface
org.glassfish.jersey.internal.util.collection.Value

Packages that use Value
org.glassfish.jersey.internal.util.collection Common set of Jersey collection classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.servlet Jersey generic Servlet container integration classes. 
 

Uses of Value in org.glassfish.jersey.internal.util.collection
 

Subinterfaces of Value in org.glassfish.jersey.internal.util.collection
 interface Ref<T>
          A possibly mutable value reference.
 

Methods in org.glassfish.jersey.internal.util.collection that return Value
static
<T> Value<T>
Values.empty()
          Get an empty value provider whose get() method always returns null.
static
<T> Value<T>
Values.lazy(Value<T> delegate)
          Get a new lazily initialized value provider.
static
<T> Value<T>
Values.of(T value)
          Get a new constant value provider whose get() method always returns the instance supplied to the value parameter.
 

Methods in org.glassfish.jersey.internal.util.collection with parameters of type Value
static
<T> Value<T>
Values.lazy(Value<T> delegate)
          Get a new lazily initialized value provider.
 

Uses of Value in org.glassfish.jersey.message.internal
 

Methods in org.glassfish.jersey.message.internal with parameters of type Value
 void InboundMessageContext.setReaderInterceptors(Value<Iterable<ReaderInterceptor>> readerInterceptors)
          Set reader interceptors for reading entity from this context.
 

Uses of Value in org.glassfish.jersey.servlet
 

Methods in org.glassfish.jersey.servlet that return Value
 Value<Integer> WebComponent.service(URI baseUri, URI requestUri, javax.servlet.http.HttpServletRequest servletRequest, javax.servlet.http.HttpServletResponse servletResponse)
          Dispatch client requests to a resource class.
 Value<Integer> ServletContainer.service(URI baseUri, URI requestUri, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Dispatch client requests to a resource class.
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.