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 to BinaryIdMapper.

    Binary name mapper can be configured for all binary objects via org.apache.ignite.configuration.BinaryConfiguration#getNameMapper() method, or for a specific binary type via BinaryTypeConfiguration.getNameMapper() method.

    See Also:
    BinaryIdMapper
    • Method Detail

      • typeName

        String typeName​(String clsName)
        Gets type clsName.
        Parameters:
        clsName - Class came
        Returns:
        Type name.
      • fieldName

        String fieldName​(String fieldName)
        Gets field name.
        Parameters:
        fieldName - Field name.
        Returns:
        Field name.