Uses of Enum Class
com.helger.io.file.EFileIOErrorCode
Packages that use EFileIOErrorCode
-
Uses of EFileIOErrorCode in com.helger.io.file
Methods in com.helger.io.file that return EFileIOErrorCodeModifier and TypeMethodDescription@NonNull EFileIOErrorCodeFileIOError.getErrorCode()static @Nullable EFileIOErrorCodeEFileIOErrorCode.getFromIDOrNull(int nID) Get theEFileIOErrorCodefrom the given numeric ID.static EFileIOErrorCodeReturns the enum constant of this class with the specified name.static EFileIOErrorCode[]EFileIOErrorCode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.helger.io.file with parameters of type EFileIOErrorCodeModifier and TypeMethodDescriptiondefault voidIFileOperationCallback.onError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eErrorCode, @NonNull File aFile1, @Nullable File aFile2, @Nullable Exception aException) Called upon operation error.voidLoggingFileOperationCallback.onError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eErrorCode, @NonNull File aFile1, @Nullable File aFile2, @Nullable Exception aException) Constructors in com.helger.io.file with parameters of type EFileIOErrorCodeModifierConstructorDescriptionFileIOError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eCode) Constructor with operation and error code only.FileIOError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eCode, @NonNull File aFile1) Constructor with operation, error code and one file.FileIOError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eCode, @NonNull File aFile1, @NonNull File aFile2) Constructor with operation, error code and two files.FileIOError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eCode, @Nullable File aFile1, @Nullable File aFile2, @Nullable Exception aException) Full constructor with all parameters.FileIOError(@NonNull EFileIOOperation eOperation, @NonNull EFileIOErrorCode eCode, @NonNull Exception aException) Constructor with operation, error code and an exception.