Uses of Interface
org.springframework.expression.TypeConverter
Packages that use TypeConverter
Package
Description
Core abstractions behind the Spring Expression Language.
Common utility classes behind the Spring Expression Language.
SpEL's central implementation package.
SpEL's default implementations for various core abstractions.
-
Uses of TypeConverter in org.springframework.expression
Methods in org.springframework.expression that return TypeConverterModifier and TypeMethodDescriptionEvaluationContext.getTypeConverter()Return a type converter that can convert (or coerce) a value from one type to another. -
Uses of TypeConverter in org.springframework.expression.common
Methods in org.springframework.expression.common with parameters of type TypeConverterModifier and TypeMethodDescriptionstatic booleanExpressionUtils.toBoolean(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a boolean using the supplied type converter.static byteExpressionUtils.toByte(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a byte using the supplied type converter.static charExpressionUtils.toChar(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a char using the supplied type converter.static doubleExpressionUtils.toDouble(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a double using the supplied type converter.static floatExpressionUtils.toFloat(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a float using the supplied type converter.static intExpressionUtils.toInt(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to an int using the supplied type converter.static longExpressionUtils.toLong(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a long using the supplied type converter.static shortExpressionUtils.toShort(TypeConverter typeConverter, TypedValue typedValue) Attempt to convert a typed value to a short using the supplied type converter. -
Uses of TypeConverter in org.springframework.expression.spel
Methods in org.springframework.expression.spel that return TypeConverter -
Uses of TypeConverter in org.springframework.expression.spel.support
Classes in org.springframework.expression.spel.support that implement TypeConverterModifier and TypeClassDescriptionclassDefault implementation of theTypeConverterinterface, delegating to a core SpringConversionService.Methods in org.springframework.expression.spel.support that return TypeConverterModifier and TypeMethodDescriptionSimpleEvaluationContext.getTypeConverter()The configuredTypeConverter.StandardEvaluationContext.getTypeConverter()Methods in org.springframework.expression.spel.support with parameters of type TypeConverterModifier and TypeMethodDescriptionstatic booleanReflectionHelper.convertAllArguments(TypeConverter converter, Object[] arguments, Method method) Convert a supplied set of arguments into the requested types.voidStandardEvaluationContext.setTypeConverter(TypeConverter typeConverter) SimpleEvaluationContext.Builder.withTypeConverter(TypeConverter converter) Register a customTypeConverter.