See: Description
| Interface | Description |
|---|---|
| ListFilterConverter.Filter<T> |
filter interface for the
ListFilterConverter |
| TypeConverter<OwnT,SubjectT> |
A TypeConverter is a ValueModel modelled after the Adapter-Pattern:
it monitors a value model (called the subject) and converts the
type of the subject's value to its own value type.
|
| Class | Description |
|---|---|
| AbstractNumberStringConverter<T extends Number> |
A base class for converters that take a Number as it's subject value and converting
it to an String as its own value.
|
| AbstractTypeConverter<OwnT,SubjectT> |
The AbstractTypeConverter class provides common code for classes providing
the TypeConverter inferface.
|
| BigDecimalStringConverter |
A BigDecimalStringConverter is taking a BigDecimal as it's subject value and converting
it to an String as its own value.
|
| Collection2ListConverter |
Converts a
Collection to List using the default order of the
collection as provided by the iterator. |
| DoubleStringConverter |
A DoubleStringConverter is taking a Double as it's subject value and converting
it to an String as its own value.
|
| FormatConverter<OwnT,SubjectT> |
A FormatConverter uses the java.text.Format framework for doing
the type conversion.
|
| IntegerStringConverter |
A IntegerStringConverter is taking an Long as it's subject value and converting
it to an String as its own value.
|
| ListFilterConverter<T> | |
| LongStringConverter |
A LongStringConverter is taking an Long as it's subject value and converting
it to an String as its own value.
|
| RegExpConverter |
A RegExpConverter uses a regular expression for a string-to-string conversion.
|
| Exception | Description |
|---|---|
| ConversionException |
A ConversionException is used by a TypeConverter to signal problems during
a conversion.
|
This package contains various classes that can be used in a ValueModel chain as value converters.
The interface defines the forward/backward conversation process.
TypeConverter
Copyright © 2017 Jürgen Zeller (privat). All rights reserved.