public enum AttachedEntityStatus extends Enum<AttachedEntityStatus>
| Enum Constant and Description | 
|---|
| ATTACHEDExplicitely attached. | 
| CHANGEDModified object. | 
| DELETEDDeleted object. | 
| LINKEDAttached because explicitely liked to another object. | 
| NEWNew 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–2023 The Apache Software Foundation. All rights reserved.