ch.systemsx.cisd.openbis.dss.generic.shared.api.v1.validation
Enum ValidationError.ValidationErrorTarget

java.lang.Object
  extended by java.lang.Enum<ValidationError.ValidationErrorTarget>
      extended by 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
DATA_SET_FILE
           
DATA_SET_OWNER
           
DATA_SET_PROPERTY
           
DATA_SET_TYPE
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
java.lang.NullPointerException - if the argument is null