public static enum PathModel.Type extends Enum<PathModel.Type>
| Enum Constant and Description |
|---|
ANY
indicates that the path value accepts both file or directory paths.
|
DIRECTORY
indicates that the path value only accepts directory paths.
|
FILE
indicates that the path value only accepts specific file paths.
|
| Modifier and Type | Method and Description |
|---|---|
static PathModel.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathModel.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathModel.Type DIRECTORY
public static final PathModel.Type FILE
public static final PathModel.Type ANY
public static PathModel.Type[] values()
for (PathModel.Type c : PathModel.Type.values()) System.out.println(c);
public static PathModel.Type 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 © 2017 MuleSoft, Inc.. All rights reserved.