@Deprecated public static enum SaveAllObjectsDialog.SaveResult extends java.lang.Enum<SaveAllObjectsDialog.SaveResult>
| Enum Constant and Description | 
|---|
| CANCELDeprecated.  User chose to cancel - stop whatever operation needed the save. | 
| SAVEDDeprecated.  There were no dirty objects, or any dirty objects that there were have been
 saved. | 
| UNSAVEDDeprecated.  User chose not to save their objects and to lose any unsaved changes. | 
| Modifier and Type | Method and Description | 
|---|---|
| static SaveAllObjectsDialog.SaveResult | valueOf(java.lang.String name)Deprecated.  Returns the enum constant of this type with the specified name. | 
| static SaveAllObjectsDialog.SaveResult[] | values()Deprecated.  Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SaveAllObjectsDialog.SaveResult CANCEL
public static final SaveAllObjectsDialog.SaveResult UNSAVED
public static final SaveAllObjectsDialog.SaveResult SAVED
public static SaveAllObjectsDialog.SaveResult[] values()
for (SaveAllObjectsDialog.SaveResult c : SaveAllObjectsDialog.SaveResult.values()) System.out.println(c);
public static SaveAllObjectsDialog.SaveResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null