Package org.apache.ignite.binary
Interface BinaryNameMapper
-
- All Known Implementing Classes:
BinaryBasicNameMapper
public interface BinaryNameMapper
Maps type and field names to different names. Prepares class/type names and field names before pass them toBinaryIdMapper
.Binary name mapper can be configured for all binary objects via
BinaryConfiguration.getNameMapper()
method, or for a specific binary type viaBinaryTypeConfiguration.getNameMapper()
method.- See Also:
BinaryIdMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
fieldName(String fieldName)
Gets field name.String
typeName(String clsName)
Gets type clsName.
-