Uses of Interface
org.restlet.util.NamedValue
-
Packages that use NamedValue Package Description org.restlet.data Information exchanged by components.org.restlet.engine.header Supports HTTP header parsing and formatting.org.restlet.ext.html Support for the HTML (HyperText Markup Language) standard in its 4.0 version and above.org.restlet.ext.jaxrs.internal.wrappers org.restlet.ext.jaxrs.internal.wrappers.params org.restlet.ext.wadl Support the WADL specification.org.restlet.util Various utility classes. -
-
Uses of NamedValue in org.restlet.data
Classes in org.restlet.data that implement NamedValue Modifier and Type Class Description classCacheDirectiveDirective for caching mechanisms along the call chain.classCookieCookie provided by a client.classCookieSettingCookie setting provided by a server.classExpectationParticular server behavior that is required by a client.classHeaderRepresents an HTTP header.classParameterMulti-usage parameter. -
Uses of NamedValue in org.restlet.engine.header
Methods in org.restlet.engine.header with type parameters of type NamedValue Modifier and Type Method Description private static <NV extends NamedValue<java.lang.String>>
NVHeaderReader. createNamedValue(java.lang.Class<NV> resultClass, java.lang.String name)Creates a new named value with a null value.private static <NV extends NamedValue<java.lang.String>>
NVHeaderReader. createNamedValue(java.lang.Class<NV> resultClass, java.lang.String name, java.lang.String value)Creates a new named value.<NV extends NamedValue<java.lang.String>>
NVHeaderReader. readNamedValue(java.lang.Class<NV> resultClass)Reads the next pair as a parameter.Methods in org.restlet.engine.header with parameters of type NamedValue Modifier and Type Method Description HeaderWriter<V>HeaderWriter. appendExtension(NamedValue<java.lang.String> extension)Formats and appends a parameter as an extension. -
Uses of NamedValue in org.restlet.ext.html
Classes in org.restlet.ext.html that implement NamedValue Modifier and Type Class Description classFormDataHTML form data composed of a name and a value.Constructors in org.restlet.ext.html with parameters of type NamedValue Constructor Description FormData(NamedValue<java.lang.String> namedValue)Constructor. -
Uses of NamedValue in org.restlet.ext.jaxrs.internal.wrappers
Methods in org.restlet.ext.jaxrs.internal.wrappers with parameters of type NamedValue Modifier and Type Method Description static java.lang.StringWrapperUtil. getValue(NamedValue<java.lang.String> namedValue)Deprecated.Returns the value from the given Parameter. -
Uses of NamedValue in org.restlet.ext.jaxrs.internal.wrappers.params
Fields in org.restlet.ext.jaxrs.internal.wrappers.params with type parameters of type NamedValue Modifier and Type Field Description private java.util.Iterator<? extends NamedValue<java.lang.String>>NamedValuesIter. namedValuesIterDeprecated.Constructor parameters in org.restlet.ext.jaxrs.internal.wrappers.params with type arguments of type NamedValue Constructor Description NamedValuesIter(java.lang.Iterable<? extends NamedValue<java.lang.String>> namedValues)Deprecated. -
Uses of NamedValue in org.restlet.ext.wadl
Methods in org.restlet.ext.wadl that return NamedValue Modifier and Type Method Description protected NamedValue<java.lang.String>WadlServerResource. getParameter(java.lang.String name)Deprecated.Returns the first parameter found in the current context (entity, query, headers, etc) with the given name.Methods in org.restlet.ext.wadl that return types with arguments of type NamedValue Modifier and Type Method Description protected Series<? extends NamedValue<java.lang.String>>WadlServerResource. getParameters(java.lang.String name)Deprecated.Returns a collection of parameters found in the current context (entity, query, headers, etc) given a parameter name.private Series<? extends NamedValue<java.lang.String>>WadlServerResource. getParameters(ParameterInfo parameterInfo)Deprecated.Returns a collection of parameters objects contained in the current context (entity, query, headers, etc) given a ParameterInfo instance. -
Uses of NamedValue in org.restlet.util
Classes in org.restlet.util with type parameters of type NamedValue Modifier and Type Class Description classSeries<T extends NamedValue<java.lang.String>>Modifiable list of entries with many helper methods.Methods in org.restlet.util that return types with arguments of type NamedValue Modifier and Type Method Description static Series<? extends NamedValue>Series. unmodifiableSeries(Series<? extends NamedValue> series)Returns an unmodifiable view of the specified series.Method parameters in org.restlet.util with type arguments of type NamedValue Modifier and Type Method Description static Series<? extends NamedValue>Series. unmodifiableSeries(Series<? extends NamedValue> series)Returns an unmodifiable view of the specified series.
-