Interface ConversionTable

All Superinterfaces:
Serializable

public interface ConversionTable extends Serializable
Definition of a type providing means and information about a desired conversion of characters.
Since:
4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    getCharacterReplacer(boolean quote)
    Provides an object that enables to convert a text based on this conversion table.
    Provides the given name for this conversion table.
    Provides the raw table for conversion.
  • Method Details

    • getCharacterReplacer

      CharacterReplacer getCharacterReplacer(boolean quote)
      Provides an object that enables to convert a text based on this conversion table.
      Parameters:
      quote - If true, switches on quote mode.
      Returns:
      A character replacer object.
      Since:
      4.0
    • getName

      String getName()
      Provides the given name for this conversion table.
      Returns:
      The given name.
      Since:
      4.0
    • getTable

      String getTable()
      Provides the raw table for conversion.
      Returns:
      The raw table.
      Since:
      4.0