Enum ValidationError.ValidationErrorTarget
- java.lang.Object
-
- java.lang.Enum<ValidationError.ValidationErrorTarget>
-
- ch.systemsx.cisd.openbis.dss.generic.shared.api.v1.validation.ValidationError.ValidationErrorTarget
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ValidationError.ValidationErrorTarget>
- Enclosing class:
- ValidationError
public static enum ValidationError.ValidationErrorTarget extends java.lang.Enum<ValidationError.ValidationErrorTarget>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_SET_FILE
DATA_SET_OWNER
DATA_SET_PROPERTY
DATA_SET_TYPE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationError.ValidationErrorTarget
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ValidationError.ValidationErrorTarget[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_SET_TYPE
public static final ValidationError.ValidationErrorTarget DATA_SET_TYPE
-
DATA_SET_OWNER
public static final ValidationError.ValidationErrorTarget DATA_SET_OWNER
-
DATA_SET_PROPERTY
public static final ValidationError.ValidationErrorTarget DATA_SET_PROPERTY
-
DATA_SET_FILE
public static final ValidationError.ValidationErrorTarget DATA_SET_FILE
-
-
Method Detail
-
values
public static ValidationError.ValidationErrorTarget[] 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 (ValidationError.ValidationErrorTarget c : ValidationError.ValidationErrorTarget.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationError.ValidationErrorTarget 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
-
-