Package org.eclipse.jgit.errors
Enum CorruptPackIndexException.ErrorType
java.lang.Object
java.lang.Enum<CorruptPackIndexException.ErrorType>
org.eclipse.jgit.errors.CorruptPackIndexException.ErrorType
- All Implemented Interfaces:
Serializable
,Comparable<CorruptPackIndexException.ErrorType>
- Enclosing class:
CorruptPackIndexException
public static enum CorruptPackIndexException.ErrorType
extends Enum<CorruptPackIndexException.ErrorType>
The error type of a corrupt index file.
-
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 type with the specified name.static CorruptPackIndexException.ErrorType[]
values()
Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-