Package ninja.params
Class ArgumentExtractors.BodyAsExtractor<T>
- java.lang.Object
-
- ninja.params.ArgumentExtractors.BodyAsExtractor<T>
-
- All Implemented Interfaces:
ArgumentExtractor<T>
- Enclosing class:
- ArgumentExtractors
public static class ArgumentExtractors.BodyAsExtractor<T> extends Object implements ArgumentExtractor<T>
-
-
Constructor Summary
Constructors Constructor Description BodyAsExtractor(Class<T> bodyType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Textract(Context context)Extract the argument from the contextClass<T>getExtractedType()Get the type of the argument that is extractedStringgetFieldName()Get the field name that is being extracted, if this value is extracted from a field
-
-
-
Method Detail
-
extract
public T extract(Context context)
Description copied from interface:ArgumentExtractorExtract the argument from the context- Specified by:
extractin interfaceArgumentExtractor<T>- Parameters:
context- The argument to extract- Returns:
- The extracted argument
-
getExtractedType
public Class<T> getExtractedType()
Description copied from interface:ArgumentExtractorGet the type of the argument that is extracted- Specified by:
getExtractedTypein interfaceArgumentExtractor<T>- Returns:
- The type of the argument that is being extracted
-
getFieldName
public String getFieldName()
Description copied from interface:ArgumentExtractorGet the field name that is being extracted, if this value is extracted from a field- Specified by:
getFieldNamein interfaceArgumentExtractor<T>- Returns:
- The field name, or null if the argument isn't extracted from a named field
-
-