Package org.apache.ignite.cdc
Interface TypeMapping
-
- All Superinterfaces:
Serializable
public interface TypeMapping extends Serializable
Ignite maps type name to some id. Mapping data required to perform deserialization ofBinaryObject
. Note,typeName()
can represent not only Java class names. For other supported platforms take a look atPlatformType
values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlatformType
platformType()
int
typeId()
String
typeName()
-
-
-
Method Detail
-
typeId
int typeId()
- Returns:
- Type id.
-
typeName
String typeName()
- Returns:
- Type name.
-
platformType
PlatformType platformType()
- Returns:
- Platform type.
-
-