Uses of Class
org.eclipse.jgit.lib.ObjectChecker.ErrorType
-
Packages that use ObjectChecker.ErrorType Package Description org.eclipse.jgit.errors Exceptions thrown by lower-level JGit APIs.org.eclipse.jgit.internal.fsck Git fsck support.org.eclipse.jgit.internal.submodule org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of ObjectChecker.ErrorType in org.eclipse.jgit.errors
Fields in org.eclipse.jgit.errors declared as ObjectChecker.ErrorType Modifier and Type Field Description private ObjectChecker.ErrorType
CorruptObjectException. errorType
Methods in org.eclipse.jgit.errors that return ObjectChecker.ErrorType Modifier and Type Method Description ObjectChecker.ErrorType
CorruptObjectException. getErrorType()
Specific error condition identified byObjectChecker
.Constructors in org.eclipse.jgit.errors with parameters of type ObjectChecker.ErrorType Constructor Description CorruptObjectException(ObjectChecker.ErrorType type, AnyObjectId id, java.lang.String why)
Report a specific error condition discovered in an object. -
Uses of ObjectChecker.ErrorType in org.eclipse.jgit.internal.fsck
Fields in org.eclipse.jgit.internal.fsck declared as ObjectChecker.ErrorType Modifier and Type Field Description (package private) ObjectChecker.ErrorType
FsckError.CorruptObject. errorType
Methods in org.eclipse.jgit.internal.fsck that return ObjectChecker.ErrorType Modifier and Type Method Description ObjectChecker.ErrorType
FsckError.CorruptObject. getErrorType()
Constructors in org.eclipse.jgit.internal.fsck with parameters of type ObjectChecker.ErrorType Constructor Description CorruptObject(ObjectId id, int type, ObjectChecker.ErrorType errorType)
-
Uses of ObjectChecker.ErrorType in org.eclipse.jgit.internal.submodule
Fields in org.eclipse.jgit.internal.submodule declared as ObjectChecker.ErrorType Modifier and Type Field Description private ObjectChecker.ErrorType
SubmoduleValidator.SubmoduleValidationException. fsckMessageId
Methods in org.eclipse.jgit.internal.submodule that return ObjectChecker.ErrorType Modifier and Type Method Description ObjectChecker.ErrorType
SubmoduleValidator.SubmoduleValidationException. getFsckMessageId()
Constructors in org.eclipse.jgit.internal.submodule with parameters of type ObjectChecker.ErrorType Constructor Description SubmoduleValidationException(java.lang.String message, ObjectChecker.ErrorType fsckMessageId)
-
Uses of ObjectChecker.ErrorType in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib with type parameters of type ObjectChecker.ErrorType Modifier and Type Field Description private java.util.EnumSet<ObjectChecker.ErrorType>
ObjectChecker. errors
Methods in org.eclipse.jgit.lib that return ObjectChecker.ErrorType Modifier and Type Method Description static ObjectChecker.ErrorType
ObjectChecker.ErrorType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ObjectChecker.ErrorType[]
ObjectChecker.ErrorType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.jgit.lib with parameters of type ObjectChecker.ErrorType Modifier and Type Method Description private void
ObjectChecker. report(ObjectChecker.ErrorType err, AnyObjectId id, java.lang.String why)
ObjectChecker
ObjectChecker. setIgnore(ObjectChecker.ErrorType id, boolean ignore)
Add message type to be ignored across all objects.Method parameters in org.eclipse.jgit.lib with type arguments of type ObjectChecker.ErrorType Modifier and Type Method Description ObjectChecker
ObjectChecker. setIgnore(java.util.Set<ObjectChecker.ErrorType> ids)
Configure error types to be ignored across all objects. -
Uses of ObjectChecker.ErrorType in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport with type parameters of type ObjectChecker.ErrorType Modifier and Type Field Description private static java.util.Map<java.lang.String,ObjectChecker.ErrorType>
TransferConfig.FsckKeyNameHolder. errors
private java.util.EnumSet<ObjectChecker.ErrorType>
TransferConfig. ignore
Methods in org.eclipse.jgit.transport that return ObjectChecker.ErrorType Modifier and Type Method Description (package private) static ObjectChecker.ErrorType
TransferConfig.FsckKeyNameHolder. parse(java.lang.String key)
-