Package ninja.params
Class ArgumentExtractors.FlashExtractor
- java.lang.Object
-
- ninja.params.ArgumentExtractors.FlashExtractor
-
- All Implemented Interfaces:
ArgumentExtractor<FlashScope>
- Enclosing class:
- ArgumentExtractors
public static class ArgumentExtractors.FlashExtractor extends Object implements ArgumentExtractor<FlashScope>
-
-
Constructor Summary
Constructors Constructor Description FlashExtractor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FlashScopeextract(Context context)Extract the argument from the contextClass<FlashScope>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 FlashScope extract(Context context)
Description copied from interface:ArgumentExtractorExtract the argument from the context- Specified by:
extractin interfaceArgumentExtractor<FlashScope>- Parameters:
context- The argument to extract- Returns:
- The extracted argument
-
getExtractedType
public Class<FlashScope> getExtractedType()
Description copied from interface:ArgumentExtractorGet the type of the argument that is extracted- Specified by:
getExtractedTypein interfaceArgumentExtractor<FlashScope>- 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<FlashScope>- Returns:
- The field name, or null if the argument isn't extracted from a named field
-
-