Package org.eclipse.core.databinding.conversion
Provides interfaces and classes for data type conversion.
Package Specification
This package provides the IConverter
interface along with classes
that implement the interface to convert between common data types.
-
Interface Summary Interface Description IConverter<F,T> A one-way converter. -
Class Summary Class Description Converter<F,T> Abstract base class for converters.NumberToStringConverter Converts a Number to a String usingNumberFormat.format(...)
.StringToNumberConverter<T extends Number> Converts a String to a Number usingNumberFormat.parse(...)
.