Enum ReportLine.ReportLineType
- java.lang.Object
-
- java.lang.Enum<ReportLine.ReportLineType>
-
- fr.gouv.vitam.metadata.core.reconstruction.model.ReportLine.ReportLineType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ReportLine.ReportLineType>
- Enclosing class:
- ReportLine
public static enum ReportLine.ReportLineType extends java.lang.Enum<ReportLine.ReportLineType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETED_GOT_VERSION
DELETED_OBJECT_GROUP
DELETED_UNIT
TRANSFERRED_OBJECT_GROUP
TRANSFERRED_UNIT
UNDEFINED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReportLine.ReportLineType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReportLine.ReportLineType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELETED_UNIT
public static final ReportLine.ReportLineType DELETED_UNIT
-
DELETED_OBJECT_GROUP
public static final ReportLine.ReportLineType DELETED_OBJECT_GROUP
-
DELETED_GOT_VERSION
public static final ReportLine.ReportLineType DELETED_GOT_VERSION
-
TRANSFERRED_UNIT
public static final ReportLine.ReportLineType TRANSFERRED_UNIT
-
TRANSFERRED_OBJECT_GROUP
public static final ReportLine.ReportLineType TRANSFERRED_OBJECT_GROUP
-
UNDEFINED
public static final ReportLine.ReportLineType UNDEFINED
-
-
Method Detail
-
values
public static ReportLine.ReportLineType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReportLine.ReportLineType c : ReportLine.ReportLineType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportLine.ReportLineType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-