Checkout/update depth constants, see http://svnbook.red-bean.com/en/1.7/svn.advanced.sparsedirs.html
| Enum constant | Description |
|---|---|
EMPTY |
Include only the immediate target of the operation, not any of its file or directory children. |
FILES |
Include the immediate target of the operation and any of its immediate file children. |
IMMEDIATES |
Include the immediate target of the operation and any of its immediate file or directory children. |
INFINITY |
Include the immediate target, its file and directory children, its children's children, and so on to full recursion. |
| Methods inherited from class | Name |
|---|---|
class java.lang.Enum |
java.lang.Enum#name(), java.lang.Enum#equals(java.lang.Object), java.lang.Enum#toString(), java.lang.Enum#hashCode(), java.lang.Enum#compareTo(java.lang.Object), java.lang.Enum#compareTo(java.lang.Enum), java.lang.Enum#valueOf(java.lang.Class, java.lang.String), java.lang.Enum#getDeclaringClass(), java.lang.Enum#ordinal(), java.lang.Enum#wait(), java.lang.Enum#wait(long, int), java.lang.Enum#wait(long), java.lang.Enum#getClass(), java.lang.Enum#notify(), java.lang.Enum#notifyAll() |
class java.lang.Object |
java.lang.Object#wait(), java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Include only the immediate target of the operation, not any of its file or directory children.
Include the immediate target of the operation and any of its immediate file children.
Include the immediate target of the operation and any of its immediate file or directory children. The directory children will themselves be empty.
Include the immediate target, its file and directory children, its children's children, and so on to full recursion.
Groovy Documentation