public enum AttachedEntityStatus extends Enum<AttachedEntityStatus>
Enum Constant and Description |
---|
ATTACHED
Explicitely attached.
|
CHANGED
Modified object.
|
DELETED
Deleted object.
|
LINKED
Attached because explicitely liked to another object.
|
NEW
New object.
|
Modifier and Type | Method and Description |
---|---|
static AttachedEntityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachedEntityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachedEntityStatus ATTACHED
public static final AttachedEntityStatus NEW
public static final AttachedEntityStatus CHANGED
public static final AttachedEntityStatus DELETED
public static final AttachedEntityStatus LINKED
public static AttachedEntityStatus[] values()
for (AttachedEntityStatus c : AttachedEntityStatus.values()) System.out.println(c);
public static AttachedEntityStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013–2018 The Apache Software Foundation. All rights reserved.