Package org.jbehave.core.steps
Class ParameterConverters.ExamplesTableParametersConverter
java.lang.Object
org.jbehave.core.steps.ParameterConverters.AbstractParameterConverter<String,T>
org.jbehave.core.steps.ParameterConverters.FromStringParameterConverter<Object>
org.jbehave.core.steps.ParameterConverters.ExamplesTableParametersConverter
- All Implemented Interfaces:
ParameterConverters.ParameterConverter<String,Object>
- Enclosing class:
- ParameterConverters
public static class ParameterConverters.ExamplesTableParametersConverter
extends ParameterConverters.FromStringParameterConverter<Object>
Converts ExamplesTable to list of parameters, mapped to annotated custom
types.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanConvertTo(Type type) Returntrueif the converter can convert to the desired target type.convertValue(String value, Type type) Convert the value from one type to another, for example from abooleanto aString.static booleanMethods inherited from class org.jbehave.core.steps.ParameterConverters.AbstractParameterConverter
canConvertFrom, getSourceType, getTargetType
-
Constructor Details
-
ExamplesTableParametersConverter
-
-
Method Details
-
canConvertTo
Description copied from interface:ParameterConverters.ParameterConverterReturntrueif the converter can convert to the desired target type.- Specified by:
canConvertToin interfaceParameterConverters.ParameterConverter<String,Object> - Overrides:
canConvertToin classParameterConverters.AbstractParameterConverter<String,Object> - Parameters:
type- the type descriptor that describes the requested result type- Returns:
trueif that conversion can be performed
-
convertValue
Description copied from interface:ParameterConverters.ParameterConverterConvert the value from one type to another, for example from abooleanto aString.- Parameters:
value- the value to be convertedtype- the type descriptor that supplies extra information about the requested result type- Returns:
- the converted value
-
isExamplesTableParameters
-