Class LinkProvider
- java.lang.Object
-
- org.glassfish.jersey.message.internal.LinkProvider
-
- All Implemented Interfaces:
RuntimeDelegate.HeaderDelegate<Link>,HeaderDelegateProvider<Link>
@Singleton public class LinkProvider extends Object implements HeaderDelegateProvider<Link>
Provider for Link Headers.- Author:
- Santiago Pericas-Geertsen, Marek Potociar
-
-
Constructor Summary
Constructors Constructor Description LinkProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LinkfromString(String value)Parse the supplied value and create an instance ofT.booleansupports(Class<?> type)Ascertain if the Provider supports a particular type.StringtoString(Link value)Convert the supplied value to a String.
-
-
-
Method Detail
-
supports
public boolean supports(Class<?> type)
Description copied from interface:HeaderDelegateProviderAscertain if the Provider supports a particular type.- Specified by:
supportsin interfaceHeaderDelegateProvider<Link>- Parameters:
type- the type that is to be supported.- Returns:
- true if the type is supported, otherwise false.
-
fromString
public Link fromString(String value) throws IllegalArgumentException
Description copied from interface:RuntimeDelegate.HeaderDelegateParse the supplied value and create an instance ofT.- Specified by:
fromStringin interfaceRuntimeDelegate.HeaderDelegate<Link>- Parameters:
value- the string value.- Returns:
- the newly created instance of
T. - Throws:
IllegalArgumentException- if the supplied string cannot be parsed or isnull.
-
toString
public String toString(Link value)
Description copied from interface:RuntimeDelegate.HeaderDelegateConvert the supplied value to a String.- Specified by:
toStringin interfaceRuntimeDelegate.HeaderDelegate<Link>- Parameters:
value- the value of typeT.- Returns:
- a String representation of the value.
-
-