Package apple.fileprovider.enums
Class NSFileProviderItemCapabilities
- java.lang.Object
-
- apple.fileprovider.enums.NSFileProviderItemCapabilities
-
public final class NSFileProviderItemCapabilities extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longAddingSubItemsIndicates that items can be imported to the folder.static longAllIndicates that the folder can be enumerated.static longContentEnumeratingIndicates that the folder can be enumerated.static longDeletingIndicates that the item can be deletedstatic longReadingIndicates that the file can be opened for reading.static longRenamingIndicates that the item can be renamedstatic longReparentingIndicates that the item can be moved to another folderstatic longTrashingIndicates that the item can be moved to the trashstatic longWritingIndicates that the file can be opened for writing.
-
-
-
Field Detail
-
Reading
public static final long Reading
Indicates that the file can be opened for reading. If set on a folder this is equivalent to @c .allowsContentEnumerating.- See Also:
- Constant Field Values
-
Writing
public static final long Writing
Indicates that the file can be opened for writing. If set on a folder, this is equivalent to @c .allowsAddingSubItems.- See Also:
- Constant Field Values
-
Reparenting
public static final long Reparenting
Indicates that the item can be moved to another folder- See Also:
- Constant Field Values
-
Renaming
public static final long Renaming
Indicates that the item can be renamed- See Also:
- Constant Field Values
-
Trashing
public static final long Trashing
Indicates that the item can be moved to the trash- See Also:
- Constant Field Values
-
Deleting
public static final long Deleting
Indicates that the item can be deleted- See Also:
- Constant Field Values
-
AddingSubItems
public static final long AddingSubItems
Indicates that items can be imported to the folder. If set on a file, this is equivalent to @c .allowsWriting.- See Also:
- Constant Field Values
-
ContentEnumerating
public static final long ContentEnumerating
Indicates that the folder can be enumerated. If set on a file, this is equivalent to @c .allowsReading.- See Also:
- Constant Field Values
-
All
public static final long All
Indicates that the folder can be enumerated. If set on a file, this is equivalent to @c .allowsReading.- See Also:
- Constant Field Values
-
-