Enum UploadBindingItemValidate.Check
- java.lang.Object
-
- java.lang.Enum<UploadBindingItemValidate.Check>
-
- de.businesscode.bcdui.upload.data.steps.UploadBindingItemValidate.Check
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UploadBindingItemValidate.Check>
- Enclosing class:
- UploadBindingItemValidate
public static enum UploadBindingItemValidate.Check extends java.lang.Enum<UploadBindingItemValidate.Check>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IS_DATE
IS_INTEGER
IS_NUMBER
IS_TIMESTAMP
IS_UNIQUE
MAX_LENGTH
NOT_NULL
UNKOWN_TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescr()
java.lang.String
getFct(java.lang.String col)
java.lang.String
getFct(java.lang.String col, int comp)
java.lang.String
getMsg()
static UploadBindingItemValidate.Check
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UploadBindingItemValidate.Check[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_INTEGER
public static final UploadBindingItemValidate.Check IS_INTEGER
-
IS_NUMBER
public static final UploadBindingItemValidate.Check IS_NUMBER
-
IS_DATE
public static final UploadBindingItemValidate.Check IS_DATE
-
IS_TIMESTAMP
public static final UploadBindingItemValidate.Check IS_TIMESTAMP
-
NOT_NULL
public static final UploadBindingItemValidate.Check NOT_NULL
-
MAX_LENGTH
public static final UploadBindingItemValidate.Check MAX_LENGTH
-
IS_UNIQUE
public static final UploadBindingItemValidate.Check IS_UNIQUE
-
UNKOWN_TYPE
public static final UploadBindingItemValidate.Check UNKOWN_TYPE
-
-
Method Detail
-
values
public static UploadBindingItemValidate.Check[] 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 (UploadBindingItemValidate.Check c : UploadBindingItemValidate.Check.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UploadBindingItemValidate.Check 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
-
getFct
public java.lang.String getFct(java.lang.String col)
-
getFct
public java.lang.String getFct(java.lang.String col, int comp)
-
getMsg
public java.lang.String getMsg()
-
getDescr
public java.lang.String getDescr()
-
-