org.apache.cayenne.map
Enum LifecycleEvent
java.lang.Object
java.lang.Enum<LifecycleEvent>
org.apache.cayenne.map.LifecycleEvent
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<LifecycleEvent>
public enum LifecycleEvent
- extends java.lang.Enum<LifecycleEvent>
Defines possible entity object lifecycle events. Cayenne notifies registered listeners
and entity callback methods when such events occur during the object lifecycle.
- Since:
- 3.0
Method Summary |
static LifecycleEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LifecycleEvent[] |
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 |
POST_ADD
public static final LifecycleEvent POST_ADD
PRE_REMOVE
public static final LifecycleEvent PRE_REMOVE
PRE_UPDATE
public static final LifecycleEvent PRE_UPDATE
POST_PERSIST
public static final LifecycleEvent POST_PERSIST
POST_REMOVE
public static final LifecycleEvent POST_REMOVE
POST_UPDATE
public static final LifecycleEvent POST_UPDATE
POST_LOAD
public static final LifecycleEvent POST_LOAD
PRE_PERSIST
public static final LifecycleEvent PRE_PERSIST
values
public static final LifecycleEvent[] 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(LifecycleEvent c : LifecycleEvent.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static LifecycleEvent 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
Copyright © 2001-2012 Apache Cayenne. All Rights Reserved.