com.caucho.amber.entity
Enum EntityState
java.lang.Object
java.lang.Enum<EntityState>
com.caucho.amber.entity.EntityState
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EntityState>
public enum EntityState
- extends java.lang.Enum<EntityState>
The state of an entity
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 |
TRANSIENT
public static final EntityState TRANSIENT
P_NON_TRANSACTIONAL
public static final EntityState P_NON_TRANSACTIONAL
P_PERSISTING
public static final EntityState P_PERSISTING
P_PERSISTED
public static final EntityState P_PERSISTED
P_TRANSACTIONAL
public static final EntityState P_TRANSACTIONAL
P_DELETING
public static final EntityState P_DELETING
P_DELETED
public static final EntityState P_DELETED
values
public static EntityState[] 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 (EntityState c : EntityState.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EntityState 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
isManaged
public final boolean isManaged()
isNonTransactional
public final boolean isNonTransactional()
isPersist
public final boolean isPersist()
isTransactional
public final boolean isTransactional()
isDeleting
public final boolean isDeleting()