Package org.junit.jupiter.params.converter
package org.junit.jupiter.params.converter
ArgumentConverter
implementations and the corresponding
@ConvertWith
annotation.-
ClassDescriptionAnnotationBasedArgumentConverter<A extends Annotation>
AnnotationBasedArgumentConverter
is an abstract base class forArgumentConverter
implementations that also need to consume an annotation in order to perform the conversion.ArgumentConversionException
is an exception that can occur when an object is converted to another object by an implementation of anArgumentConverter
.ArgumentConverter
is an abstraction that allows an input object to be converted to an instance of a different class.@ConvertWith
is an annotation that allows one to specify an explicitArgumentConverter
.DefaultArgumentConverter
is the default implementation of theArgumentConverter
API.FallbackStringToObjectConverter
is aStringToObjectConverter
that provides a fallback conversion strategy for converting from aString
to a given target type by invoking a static factory method or factory constructor defined in the target type.Predicate
that determines if theConstructor
supplied toFallbackStringToObjectConverter.IsFactoryConstructor.test(Constructor)
is a non-private factory constructor for the suppliedFallbackStringToObjectConverter.IsFactoryConstructor.targetType
.Predicate
that determines if theMethod
supplied toFallbackStringToObjectConverter.IsFactoryMethod.test(Method)
is a non-private static factory method for the suppliedFallbackStringToObjectConverter.IsFactoryMethod.targetType
.@JavaTimeConversionPattern
is an annotation that allows a date/time conversion pattern to be specified on a parameter of a@ParameterizedTest
method.SimpleArgumentConverter
is an abstract base class forArgumentConverter
implementations that only need to know the target type and do not need access to theParameterContext
to perform the conversion.Internal API for converting arguments of typeString
to a specified target type.TypedArgumentConverter
is an abstract base class forArgumentConverter
implementations that always convert objects of a given source type into a given target type.