/**
 * An enumeration providing values to describe the data format of parsed data.
 */
export class ParserDataFormat {
	/**
	 * Describes the format of a binary file.
	 */
	public static BINARY: string = 'binary';

	/**
	 * Describes the format of a plain text file.
	 */
	public static PLAIN_TEXT: string = 'plainText';

	/**
	 * Describes the format of an image file
	 */
	public static IMAGE: string = 'image';

}