Class StiDictionarySLService

java.lang.Object
com.stimulsoft.report.saveLoad.StiDictionarySLService
Direct Known Subclasses:
StiJsonDictionarySLService, StiXmlDictionarySLService

public abstract class StiDictionarySLService extends Object
Describes an abstract class that allows to save, load and merge dictionaries of data. Copyright Stimulsoft
  • Constructor Details

    • StiDictionarySLService

      public StiDictionarySLService()
  • Method Details

    • save

      public abstract void save(StiDictionary dictionary, OutputStream stream)
      Saves a dictionary of data in the stream.
      Parameters:
      dictionary - Dictionary of the data for saving.
      stream - Stream to save dictionary of data.
    • load

      public abstract void load(StiDictionary dictionary, InputStream stream)
      Loads a dictionay of data from the stream.
      Parameters:
      dictionary - Dictionary of the data in which loading will be done.
      stream - Stream to load dictionary of data.
    • merge

      public abstract void merge(StiDictionary dictionary, InputStream stream)
      Merge dictionary of data from the stream.
      Parameters:
      dictionary - Merge the dictionary of the data.
      stream - Stream to merge the dictionary of the data.