public enum PathProperties extends Enum<PathProperties>
PathConverter| Enum Constant and Description | 
|---|
DIRECTORY_EXISTING  | 
FILE_EXISTING  | 
FILE_OVERWRITABLE  | 
NOT_EXISTING  | 
READABLE  | 
WRITABLE  | 
| Modifier and Type | Method and Description | 
|---|---|
static PathProperties | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static PathProperties[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PathProperties FILE_EXISTING
public static final PathProperties DIRECTORY_EXISTING
public static final PathProperties NOT_EXISTING
public static final PathProperties FILE_OVERWRITABLE
public static final PathProperties READABLE
public static final PathProperties WRITABLE
public static PathProperties[] values()
for (PathProperties c : PathProperties.values()) System.out.println(c);
public static PathProperties valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.