Package org.eclipse.jgit.errors
Enum Class CorruptPackIndexException.ErrorType
java.lang.Object
java.lang.Enum<CorruptPackIndexException.ErrorType>
org.eclipse.jgit.errors.CorruptPackIndexException.ErrorType
- All Implemented Interfaces:
Serializable
,Comparable<CorruptPackIndexException.ErrorType>
,Constable
- Enclosing class:
- CorruptPackIndexException
public static enum CorruptPackIndexException.ErrorType
extends Enum<CorruptPackIndexException.ErrorType>
The error type of a corrupt index file.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCRC does not match CRC of the object data in pack file.Offset does not match index in pack file.CRC is not present in index file.Object in pack is not present in index file.Object in index file is not present in pack file. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CorruptPackIndexException.ErrorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MISMATCH_OFFSET
Offset does not match index in pack file. -
MISMATCH_CRC
CRC does not match CRC of the object data in pack file. -
MISSING_CRC
CRC is not present in index file. -
MISSING_OBJ
Object in pack is not present in index file. -
UNKNOWN_OBJ
Object in index file is not present in pack file.
-
-
Constructor Details
-
ErrorType
private ErrorType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-