com.evolveum.midpoint.common.validator
Enum EventResult.EventResultStatus

java.lang.Object
  extended by java.lang.Enum<EventResult.EventResultStatus>
      extended by com.evolveum.midpoint.common.validator.EventResult.EventResultStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EventResult.EventResultStatus>
Enclosing class:
EventResult

public static enum EventResult.EventResultStatus
extends java.lang.Enum<EventResult.EventResultStatus>


Enum Constant Summary
CONTINUE
          Continue normal processing.
SKIP_OBJECT
          Skip the rest of processing of this object, continue with the next object.
STOP
          Stop processing.
 
Method Summary
static EventResult.EventResultStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EventResult.EventResultStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTINUE

public static final EventResult.EventResultStatus CONTINUE
Continue normal processing.


SKIP_OBJECT

public static final EventResult.EventResultStatus SKIP_OBJECT
Skip the rest of processing of this object, continue with the next object.


STOP

public static final EventResult.EventResultStatus STOP
Stop processing.

Method Detail

values

public static EventResult.EventResultStatus[] 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 (EventResult.EventResultStatus c : EventResult.EventResultStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static EventResult.EventResultStatus 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


Copyright © 2012 evolveum. All Rights Reserved.