public static enum SortedTreeWalkerCallback.Result extends java.lang.Enum<SortedTreeWalkerCallback.Result>
FileVisitResult.
 This class is defined here because it runs with Java-6 too.| Enum Constant and Description | 
|---|
| cont | 
| skipSiblings | 
| skipSubtree | 
| terminate | 
| Modifier and Type | Method and Description | 
|---|---|
| static SortedTreeWalkerCallback.Result | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SortedTreeWalkerCallback.Result[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SortedTreeWalkerCallback.Result cont
public static final SortedTreeWalkerCallback.Result terminate
public static final SortedTreeWalkerCallback.Result skipSiblings
public static final SortedTreeWalkerCallback.Result skipSubtree
public static SortedTreeWalkerCallback.Result[] values()
for (SortedTreeWalkerCallback.Result c : SortedTreeWalkerCallback.Result.values()) System.out.println(c);
public static SortedTreeWalkerCallback.Result valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null