Package org.jboss.resteasy.spi
Interface StringParameterUnmarshaller<T>
-
public interface StringParameterUnmarshaller<T>
Similar to StringConverter except specific to a parameter injection only. It is annotation sensitive. Instances of this class are created per parameter injection. setAnnotations() is called when the object is instantiated- Version:
- $Revision: 1 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
fromString(java.lang.String str)
void
setAnnotations(java.lang.annotation.Annotation[] annotations)
-
-
-
Method Detail
-
setAnnotations
void setAnnotations(java.lang.annotation.Annotation[] annotations)
-
fromString
T fromString(java.lang.String str)
-
-