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 Constructor Description ExamplesTableParametersConverter(ExamplesTableFactory factory)
-
Method Summary
Modifier and Type Method Description booleancanConvertTo(Type type)Returntrueif the converter can convert to the desired target type.ObjectconvertValue(String value, Type type)Convert the value from one type to another, for example from abooleanto aString.static booleanisExamplesTableParameters(Type type)-
Methods inherited from class org.jbehave.core.steps.ParameterConverters.AbstractParameterConverter
canConvertFrom, getSourceType, getTargetType
-
-
-
-
Constructor Detail
-
ExamplesTableParametersConverter
public ExamplesTableParametersConverter(ExamplesTableFactory factory)
-
-
Method Detail
-
canConvertTo
public boolean canConvertTo(Type type)
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
public Object convertValue(String value, Type type)
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
public static boolean isExamplesTableParameters(Type type)
-
-