Class Depth


  • public class Depth
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int empty
      Just the named directory D, no entries.
      static int exclude
      Exclude (remove, whatever) directory D.
      static int files
      D + its file children, but not subdirs.
      static int immediates
      D + immediate children (D and its entries).
      static int infinity
      D + all descendants (full recursion from D).
      static int unknown
      Depth undetermined or ignored.
    • Constructor Summary

      Constructors 
      Constructor Description
      Depth()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static int fromRecurse​(boolean recurse)  
      • Methods inherited from class java.lang.Object

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

      • unknown

        public static final int unknown
        Depth undetermined or ignored.
        See Also:
        Constant Field Values
      • exclude

        public static final int exclude
        Exclude (remove, whatever) directory D.
        See Also:
        Constant Field Values
      • empty

        public static final int empty
        Just the named directory D, no entries.
        See Also:
        Constant Field Values
      • files

        public static final int files
        D + its file children, but not subdirs.
        See Also:
        Constant Field Values
      • immediates

        public static final int immediates
        D + immediate children (D and its entries).
        See Also:
        Constant Field Values
      • infinity

        public static final int infinity
        D + all descendants (full recursion from D).
        See Also:
        Constant Field Values
    • Constructor Detail

      • Depth

        public Depth()
    • Method Detail

      • fromRecurse

        public static final int fromRecurse​(boolean recurse)