Package org.openbravo.service.system
Enum SystemValidationResult.SystemValidationType
- java.lang.Object
-
- java.lang.Enum<SystemValidationResult.SystemValidationType>
-
- org.openbravo.service.system.SystemValidationResult.SystemValidationType
-
- All Implemented Interfaces:
Serializable
,Comparable<SystemValidationResult.SystemValidationType>
- Enclosing class:
- SystemValidationResult
public static enum SystemValidationResult.SystemValidationType extends Enum<SystemValidationResult.SystemValidationType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static SystemValidationResult.SystemValidationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SystemValidationResult.SystemValidationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME_TOO_LONG
public static final SystemValidationResult.SystemValidationType NAME_TOO_LONG
-
MODULE_ERROR
public static final SystemValidationResult.SystemValidationType MODULE_ERROR
-
CUSTOMIZATION_ID
public static final SystemValidationResult.SystemValidationType CUSTOMIZATION_ID
-
INCORRECT_DEFAULT_VALUE
public static final SystemValidationResult.SystemValidationType INCORRECT_DEFAULT_VALUE
-
WRONG_NAME
public static final SystemValidationResult.SystemValidationType WRONG_NAME
-
WRONG_LENGTH
public static final SystemValidationResult.SystemValidationType WRONG_LENGTH
-
NO_PRIMARY_KEY_COLUMNS
public static final SystemValidationResult.SystemValidationType NO_PRIMARY_KEY_COLUMNS
-
NOT_NULL_IN_DB_NOT_MANDATORY_IN_AD
public static final SystemValidationResult.SystemValidationType NOT_NULL_IN_DB_NOT_MANDATORY_IN_AD
-
MANDATORY_IN_AD_NULLABLE_IN_DB
public static final SystemValidationResult.SystemValidationType MANDATORY_IN_AD_NULLABLE_IN_DB
-
NOT_EXIST_IN_AD
public static final SystemValidationResult.SystemValidationType NOT_EXIST_IN_AD
-
NOT_EXIST_IN_DB
public static final SystemValidationResult.SystemValidationType NOT_EXIST_IN_DB
-
NOT_PART_OF_FOREIGN_KEY
public static final SystemValidationResult.SystemValidationType NOT_PART_OF_FOREIGN_KEY
-
WRONG_TYPE
public static final SystemValidationResult.SystemValidationType WRONG_TYPE
-
INCORRECT_CLIENT_ORG_PROPERTY_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_CLIENT_ORG_PROPERTY_NAME
-
UNEQUAL_DEFAULTVALUE
public static final SystemValidationResult.SystemValidationType UNEQUAL_DEFAULTVALUE
-
INCORRECT_PK_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_PK_NAME
-
INCORRECT_FK_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_FK_NAME
-
INCORRECT_CHECK_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_CHECK_NAME
-
INCORRECT_UNIQUE_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_UNIQUE_NAME
-
INCORRECT_INDEX_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_INDEX_NAME
-
INCORRECT_NAME_LENGTH
public static final SystemValidationResult.SystemValidationType INCORRECT_NAME_LENGTH
-
INCORRECT_DATASET_NAME
public static final SystemValidationResult.SystemValidationType INCORRECT_DATASET_NAME
-
DEPENDENCY_PROBLEM
public static final SystemValidationResult.SystemValidationType DEPENDENCY_PROBLEM
-
HAS_PROPERTY_CONFIGURATION
public static final SystemValidationResult.SystemValidationType HAS_PROPERTY_CONFIGURATION
-
OLDSTYLE_PASSWORD_COLUMNS
public static final SystemValidationResult.SystemValidationType OLDSTYLE_PASSWORD_COLUMNS
-
DUPLICATED_INCLUSION
public static final SystemValidationResult.SystemValidationType DUPLICATED_INCLUSION
-
NOFIELDSINGRIDVIEW
public static final SystemValidationResult.SystemValidationType NOFIELDSINGRIDVIEW
-
KILLABLENOTIMPLEMENTED
public static final SystemValidationResult.SystemValidationType KILLABLENOTIMPLEMENTED
-
KILLABLECLASSNOTFOUND
public static final SystemValidationResult.SystemValidationType KILLABLECLASSNOTFOUND
-
-
Method Detail
-
values
public static SystemValidationResult.SystemValidationType[] 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 (SystemValidationResult.SystemValidationType c : SystemValidationResult.SystemValidationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemValidationResult.SystemValidationType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
public String getName()
-
-