| Package | Description |
|---|---|
| org.junit.jupiter.params.converter |
ArgumentConverter
implementations and the corresponding
@ConvertWith annotation. |
| Modifier and Type | Method and Description |
|---|---|
protected abstract java.lang.Object |
SimpleArgumentConverter.convert(java.lang.Object source,
java.lang.Class<?> targetType)
Convert the supplied
source object into the supplied
targetType. |
protected abstract java.lang.Object |
AnnotationBasedArgumentConverter.convert(java.lang.Object source,
java.lang.Class<?> targetType,
A annotation)
Convert the supplied
source object into the supplied targetType,
based on metadata in the provided annotation. |
java.lang.Object |
AnnotationBasedArgumentConverter.convert(java.lang.Object source,
ParameterContext context) |
java.lang.Object |
ArgumentConverter.convert(java.lang.Object source,
ParameterContext context)
Convert the supplied
source object according to the supplied
context. |
java.lang.Object |
SimpleArgumentConverter.convert(java.lang.Object source,
ParameterContext context) |
java.lang.Object |
TypedArgumentConverter.convert(java.lang.Object source,
ParameterContext context) |
protected abstract T |
TypedArgumentConverter.convert(S source)
Convert the supplied
source object of type S into an object
of type T. |