Coverage Summary for Class: BatchType (org.kitodo.data.database.enums)
Class |
Class, %
|
Method, %
|
Line, %
|
BatchType |
100%
(1/1)
|
100%
(1/1)
|
100%
(4/4)
|
/*
* (c) Kitodo. Key to digital objects e. V. <contact@kitodo.org>
*
* This file is part of the Kitodo project.
*
* It is licensed under GNU General Public License version 3 or later.
*
* For the full copyright and license information, please read the
* GPL3-License.txt file that was distributed with this source code.
*/
package org.kitodo.data.database.enums;
/**
* Enum for batch type. Type of batch:
*
* <dl>
* <dt>LOGISTIC</dt>
* <dd>facilitates the logistics of excavation and processing in the
* digitisation centre</dd>
* <dt>NEWSPAPER</dt>
* <dd>forms the complete edition of a newspaper</dd>
* <dt>SERIAL</dt>
* <dd>forms the complete edition of a serial publication</dd>
* </dl>
*/
public enum BatchType {
LOGISTIC,
NEWSPAPER,
SERIAL
}