Class CFURLEnumeratorResult


  • public final class CFURLEnumeratorResult
    extends java.lang.Object
    CFURLEnumeratorResult - Results for CFURLEnumeratorGetNextURL
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long DirectoryPostOrderSuccess
      The enumeration was successful.
      static long End
      The enumeration is complete.
      static long Error
      An error occured during enumeration.
      static long Success
      The enumeration was successful.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Success

        public static final long Success
        The enumeration was successful. The url output parameter is valid.
        See Also:
        Constant Field Values
      • Error

        public static final long Error
        An error occured during enumeration. The retained error output parameter describes the error.
        See Also:
        Constant Field Values
      • DirectoryPostOrderSuccess

        public static final long DirectoryPostOrderSuccess
        The enumeration was successful. The url output parameter is for a directory after all of directory's descendants have been visited (post-order). This result will only be returned for directories when both the kCFURLEnumeratorDescendRecursively and kCFURLEnumeratorIncludeDirectoriesPostOrder options are passed to CFURLEnumeratorCreateForDirectoryURL.
        See Also:
        Constant Field Values