Package org.jbehave.core.steps
Class ParameterConverters.JsonConverter
java.lang.Object
org.jbehave.core.steps.ParameterConverters.AbstractParameterConverter<String,T>
org.jbehave.core.steps.ParameterConverters.FromStringParameterConverter<Object>
org.jbehave.core.steps.ParameterConverters.JsonConverter
- All Implemented Interfaces:
ParameterConverters.ParameterConverter<String,Object>
- Enclosing class:
- ParameterConverters
public static class ParameterConverters.JsonConverter
extends ParameterConverters.FromStringParameterConverter<Object>
-
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.Methods inherited from class org.jbehave.core.steps.ParameterConverters.AbstractParameterConverter
canConvertFrom, getSourceType, getTargetType
-
Constructor Details
-
JsonConverter
public JsonConverter() -
JsonConverter
-
-
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
-