Interface IMapFileHandler

All Known Implementing Classes:
TextMapFileHandler

public interface IMapFileHandler
Since:
1.14
Author:
Reiner Jung
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(int id, String eventClassName)
    Add a key value pair to the file.
    void
    Close the mapping file.
    void
    create(Path location, Charset charset)
    Create a map file with the given name and location adhering to the given charset.
  • Method Details

    • create

      void create(Path location, Charset charset)
      Create a map file with the given name and location adhering to the given charset.
      Parameters:
      location - complete path for the map file including its name
      charset - character set to be used for the file
      Since:
      1.14
    • close

      void close()
      Close the mapping file.
      Since:
      1.14
    • add

      void add(int id, String eventClassName)
      Add a key value pair to the file.
      Parameters:
      id - class id
      eventClassName - name of the event class
      Since:
      1.14