Uses of Enum Class
cdc.converters.SpecialConverterKind
Packages that use SpecialConverterKind
-
Uses of SpecialConverterKind in cdc.converters
Methods in cdc.converters that return SpecialConverterKindModifier and TypeMethodDescriptionstatic SpecialConverterKindReturns the enum constant of this class with the specified name.static SpecialConverterKind[]SpecialConverterKind.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in cdc.converters with parameters of type SpecialConverterKindModifier and TypeMethodDescriptionConverters.getCompliantConverters(Class<S> sourceClass, Class<T> targetClass, SpecialConverterKind kind) static <S,T> Converter<? super S, ? extends T> Converters.getCompliantSpecialConverter(Class<S> sourceClass, Class<T> targetClass, SpecialConverterKind kind) static <S,T> Converter<? super S, ? extends T> Converters.getCompliantSpecialConverter(Class<S> sourceClass, Class<T> targetClass, SpecialConverterKind kind, cdc.util.lang.FailureReaction reaction) Returns a compliant default converter for a pair of classes.static <S,T> Converter<S, T> Converters.getMatchingSpecialConverter(Class<S> sourceClass, Class<T> targetClass, SpecialConverterKind kind) static <S,T> Converter<S, T> Converters.getMatchingSpecialConverter(Class<S> sourceClass, Class<T> targetClass, SpecialConverterKind kind, cdc.util.lang.FailureReaction reaction) Returns the default converter associated to a pair of classes, if any.Converters.getSourceCompliantConverters(Class<S> sourceClass, SpecialConverterKind kind) Converters.getTargetCompliantConverters(Class<T> targetClass, SpecialConverterKind kind) static booleanConverters.hasSpecialConverter(Class<?> sourceClass, Class<?> targetClass, SpecialConverterKind kind) Returnstruewhen a special converter matches a pair of classes.static booleanConverters.isSpecialConverter(Converter<?, ?> converter, SpecialConverterKind kind) Returnstruewhen a converter is declared as a special one.static booleanConverters.isSpecialConverterName(String name, SpecialConverterKind kind) Returnstrueif a name is the name of a default converter.