Class MapFileReader<T,​R>

java.lang.Object
kieker.analysis.generic.MapFileReader<T,​R>
Type Parameters:
T - key value class
R - value value class

public class MapFileReader<T,​R>
extends java.lang.Object
Read a 2+n column file into a map. First column represents the key, all other the parameter of the value.
Since:
1.1
Author:
Reiner Jung
  • Constructor Summary

    Constructors 
    Constructor Description
    MapFileReader​(java.nio.file.Path mapFilePath, java.lang.String separator, java.util.Map<T,​R> map, IValueConverter<T> keyConverter, IValueConverter<R> valueConverter)  
  • Method Summary

    Modifier and Type Method Description
    void read()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • MapFileReader

      public MapFileReader​(java.nio.file.Path mapFilePath, java.lang.String separator, java.util.Map<T,​R> map, IValueConverter<T> keyConverter, IValueConverter<R> valueConverter) throws java.io.IOException
      Throws:
      java.io.IOException
  • Method Details

    • read

      public void read() throws java.io.IOException
      Throws:
      java.io.IOException