Enum UploadException.Reason
- java.lang.Object
-
- java.lang.Enum<UploadException.Reason>
-
- de.businesscode.bcdui.upload.data.UploadException.Reason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UploadException.Reason>
- Enclosing class:
- UploadException
public static enum UploadException.Reason extends java.lang.Enum<UploadException.Reason>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UploadException.Reason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UploadException.Reason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_DB_CONNECTION
public static final UploadException.Reason NO_DB_CONNECTION
-
HEURISTIC_FAILED
public static final UploadException.Reason HEURISTIC_FAILED
-
MAPPING_FAILED
public static final UploadException.Reason MAPPING_FAILED
-
FAILED_CREATE_UPLOAD_CONTROL
public static final UploadException.Reason FAILED_CREATE_UPLOAD_CONTROL
-
FAILED_READ_STEP_HISTORY
public static final UploadException.Reason FAILED_READ_STEP_HISTORY
-
FAILED_LOAD_UPLOAD_CONTROL
public static final UploadException.Reason FAILED_LOAD_UPLOAD_CONTROL
-
FAILED_WRITE_UPLOAD_CONTROL
public static final UploadException.Reason FAILED_WRITE_UPLOAD_CONTROL
-
FAILED_SAVE_STEP
public static final UploadException.Reason FAILED_SAVE_STEP
-
FAILED_FILL_ROWCOL
public static final UploadException.Reason FAILED_FILL_ROWCOL
-
SQL_IO_EXCEPTION
public static final UploadException.Reason SQL_IO_EXCEPTION
-
BINDINGSET_NOT_FOUND
public static final UploadException.Reason BINDINGSET_NOT_FOUND
-
FAILED_INSTANTIATE_STEP
public static final UploadException.Reason FAILED_INSTANTIATE_STEP
-
TOO_MANY_COLUMNS
public static final UploadException.Reason TOO_MANY_COLUMNS
-
FAILED_UPLOAD_WRONG_UPLOAD_ID
public static final UploadException.Reason FAILED_UPLOAD_WRONG_UPLOAD_ID
-
-
Method Detail
-
values
public static UploadException.Reason[] 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 (UploadException.Reason c : UploadException.Reason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UploadException.Reason 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
-
-