类org.springframework.core.convert.converter.ConditionalGenericConverter源码实例Demo

下面列出了怎么用org.springframework.core.convert.converter.ConditionalGenericConverter的API类实例代码及写法,或者点击链接到github查看源代码。

@Nullable
public GenericConverter getConverter(TypeDescriptor sourceType, TypeDescriptor targetType) {
	for (GenericConverter converter : this.converters) {
		if (!(converter instanceof ConditionalGenericConverter) ||
				((ConditionalGenericConverter) converter).matches(sourceType, targetType)) {
			return converter;
		}
	}
	return null;
}
 
@Nullable
public GenericConverter getConverter(TypeDescriptor sourceType, TypeDescriptor targetType) {
	for (GenericConverter converter : this.converters) {
		if (!(converter instanceof ConditionalGenericConverter) ||
				((ConditionalGenericConverter) converter).matches(sourceType, targetType)) {
			return converter;
		}
	}
	return null;
}
 
源代码3 项目: lams   文件: GenericConversionService.java
public GenericConverter getConverter(TypeDescriptor sourceType, TypeDescriptor targetType) {
	for (GenericConverter converter : this.converters) {
		if (!(converter instanceof ConditionalGenericConverter) ||
				((ConditionalGenericConverter) converter).matches(sourceType, targetType)) {
			return converter;
		}
	}
	return null;
}
 
public GenericConverter getConverter(TypeDescriptor sourceType, TypeDescriptor targetType) {
	for (GenericConverter converter : this.converters) {
		if (!(converter instanceof ConditionalGenericConverter) ||
				((ConditionalGenericConverter) converter).matches(sourceType, targetType)) {
			return converter;
		}
	}
	return null;
}
 
/**
 * Creates a converter of entities to {@link String}, based on the {@link EntityFormat}
 * annotation provided at the class level.
 * 
 * @return the entity to String converter
 */
public ConditionalGenericConverter getToStringConverter() {
  return new EntityToStringConverter(PARSER, PARSER_CONTEXT, messageSource, conversionService);
}
 
 类所在包
 类方法
 同包方法