com.ibm.pim.common
Enum ValidationError.Type
java.lang.Object
java.lang.Enum<ValidationError.Type>
com.ibm.pim.common.ValidationError.Type
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ValidationError.Type>
- Enclosing interface:
- ValidationError
public static enum ValidationError.Type
- extends java.lang.Enum<ValidationError.Type>
Method Summary |
static ValidationError.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ValidationError.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
LENGTH
public static final ValidationError.Type LENGTH
TYPE
public static final ValidationError.Type TYPE
INVALID_SEQUENCE
public static final ValidationError.Type INVALID_SEQUENCE
MIN_OCCURRENCE
public static final ValidationError.Type MIN_OCCURRENCE
ATTRIBUTE_CHECKED_OUT
public static final ValidationError.Type ATTRIBUTE_CHECKED_OUT
PATTERN
public static final ValidationError.Type PATTERN
VALIDATION_RULE
public static final ValidationError.Type VALIDATION_RULE
INVALID_VALUE_FOR_TYPE
public static final ValidationError.Type INVALID_VALUE_FOR_TYPE
LOOKUP_KEY_RANGE_OVERLAP
public static final ValidationError.Type LOOKUP_KEY_RANGE_OVERLAP
UNIQUENESS
public static final ValidationError.Type UNIQUENESS
VALUE_RULE
public static final ValidationError.Type VALUE_RULE
DEFAULT_VALUE
public static final ValidationError.Type DEFAULT_VALUE
DEFAULT_VALUE_RULE
public static final ValidationError.Type DEFAULT_VALUE_RULE
NON_PERSISTED_ATTRIBUTE_RULE
public static final ValidationError.Type NON_PERSISTED_ATTRIBUTE_RULE
RELATIONSHIP
public static final ValidationError.Type RELATIONSHIP
INVALID_PERIOD
public static final ValidationError.Type INVALID_PERIOD
MISSING_PRIMARY_KEY
public static final ValidationError.Type MISSING_PRIMARY_KEY
TOTAL_DIGITS
public static final ValidationError.Type TOTAL_DIGITS
values
public static final ValidationError.Type[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ValidationError.Type c : ValidationError.Type.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ValidationError.Type 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 name