@FunctionalInterface public interface TypeConverter
Comparable
type to another.
Implementations of TypeConverter need to be fully thread-safe and must have no internal state as they are expected to be used by multiple threads and with shared instances.
Modifier and Type | Method and Description |
---|---|
Comparable |
convert(Comparable value)
Compares a
Comparable -typed value to another. |
Comparable convert(Comparable value)
Comparable
-typed value to another.
Since TypeConverters are not statically typed themselves, the developer
needs to take care of correct usage of input and output types.value
- the value to be convertedCopyright © 2022 Hazelcast, Inc.. All rights reserved.