Uses of Interface
org.glassfish.jersey.internal.util.collection.Ref
-
Packages that use Ref Package Description org.glassfish.jersey.internal.inject Common Jersey internal injection utility classes.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.process.internal Common Jersey internal processing classes. -
-
Uses of Ref in org.glassfish.jersey.internal.inject
Methods in org.glassfish.jersey.internal.inject that return types with arguments of type Ref Modifier and Type Method Description static <T> Supplier<Ref<T>>ReferencingFactory. referenceFactory()Get a reference factory providing an empty reference.static <T> Supplier<Ref<T>>ReferencingFactory. referenceFactory(T initialValue)Get a reference factory providing an initialized reference.Constructor parameters in org.glassfish.jersey.internal.inject with type arguments of type Ref Constructor Description ReferencingFactory(jakarta.inject.Provider<Ref<T>> referenceFactory)Create new referencing injection factory. -
Uses of Ref in org.glassfish.jersey.internal.util.collection
Methods in org.glassfish.jersey.internal.util.collection that return Ref Modifier and Type Method Description static <T> Ref<T>Refs. emptyRef()Construct a new empty mutableRefinstance.static <T> Ref<T>Refs. immutableRef(T value)Construct a new immutableRefinstance referencing the given input value.static <T> Ref<T>Refs. of(T value)Construct a new mutableRefinstance referencing the given input value.static <T> Ref<T>Refs. threadSafe()Construct a new empty mutable thread-safeRefinstance.static <T> Ref<T>Refs. threadSafe(T value)Construct a new mutable thread-safeRefinstance referencing the given input value. -
Uses of Ref in org.glassfish.jersey.message.internal
Methods in org.glassfish.jersey.message.internal with parameters of type Ref Modifier and Type Method Description static VariantVariantSelector. selectVariant(InboundMessageContext context, List<Variant> variants, Ref<String> varyHeaderValue)Select the representation variant that best matches the request.static List<Variant>VariantSelector. selectVariants(InboundMessageContext context, List<Variant> variants, Ref<String> varyHeaderValue)Select possible representation variants in order in which they best matches the request. -
Uses of Ref in org.glassfish.jersey.process.internal
Methods in org.glassfish.jersey.process.internal with parameters of type Ref Modifier and Type Method Description static <DATA,RESULT,T extends Inflector<DATA,RESULT>>
DATAStages. process(DATA data, Stage<DATA> rootStage, Ref<T> inflectorRef)Run the data through a chain of stages identified by the root stage.
-