de.sstoehr.harreader.HarReaderMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of har-reader Show documentation
Show all versions of har-reader Show documentation
A library to access HTTP archive format with Java
package de.sstoehr.harreader;
public enum HarReaderMode {
/**
* Using strict mode enforces some rules.
* When trying to open an invalid HAR file an exception will be thrown.
*/
STRICT,
/**
* Using lax mode you are able to read even invalid HAR files.
* Currently lax mode allows:
*
* - invalid date formats
*
*/
LAX;
}