Class NSFileProviderItemCapabilities


  • public final class NSFileProviderItemCapabilities
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long AddingSubItems
      Indicates that items can be imported to the folder.
      static long All
      Indicates that the folder can be enumerated.
      static long ContentEnumerating
      Indicates that the folder can be enumerated.
      static long Deleting
      Indicates that the item can be deleted
      static long Reading
      Indicates that the file can be opened for reading.
      static long Renaming
      Indicates that the item can be renamed
      static long Reparenting
      Indicates that the item can be moved to another folder
      static long Trashing
      Indicates that the item can be moved to the trash
      static long Writing
      Indicates that the file can be opened for writing.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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