Package apple.uikit.enums
Class UIDocumentState
- java.lang.Object
-
- apple.uikit.enums.UIDocumentState
-
public final class UIDocumentState extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longClosedThe document has either not been successfully opened, or has been since closed.static longEditingDisabledSet before calling -disableEditing.static longInConflictConflicts exist for the document's fileURL.static longNormalstatic longProgressAvailableSet if the document is busy loading or saving.static longSavingErrorAn error has occurred that prevents the document from saving.
-
-
-
Field Detail
-
Normal
public static final long Normal
- See Also:
- Constant Field Values
-
Closed
public static final long Closed
The document has either not been successfully opened, or has been since closed. Document properties may not be valid.- See Also:
- Constant Field Values
-
InConflict
public static final long InConflict
Conflicts exist for the document's fileURL. They can be accessed through +[NSFileVersion unresolvedConflictVersionsOfItemAtURL:].- See Also:
- Constant Field Values
-
SavingError
public static final long SavingError
An error has occurred that prevents the document from saving.- See Also:
- Constant Field Values
-
EditingDisabled
public static final long EditingDisabled
Set before calling -disableEditing. The document is is busy and it is not currently safe to allow user edits. -enableEditing will be called when it becomes safe to edit again.- See Also:
- Constant Field Values
-
ProgressAvailable
public static final long ProgressAvailable
Set if the document is busy loading or saving. Progress is valid while this is set.- See Also:
- Constant Field Values
-
-