blob: b8d749f463155b96cd50e01527740626cffffab9 [file] [log] [blame]
/*
* Copyright (c) 2016 Audi AG
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.eclipse.mdm.mdfsorter;
/**
* The different problem types.<br>
* LINKED_DATALIST_PROBLEM: Data is stored in a linked list, which should be
* merged into a single block if possible.<br>
* ZIPPED_DATA_PROBLEM: Data is stored in a single DZBLOCK, and the unzip flag
* is set, so it has to be unzipped<br>
* UNZIPPED_DATA_PROBLEM: Data is stored in a single DTBLOCK (or similar) and
* the zip flag is set, so it has to be zipped.
*
* @author Tobias Leemann
*
*/
public enum MDFProblemType {
LINKED_DATALIST_PROBLEM, ZIPPED_DATA_PROBLEM, UNZIPPED_DATA_PROBLEM, UNSORTED_DATA_PROBLEM;
}