public enum FileSystemObjectType extends java.lang.Enum<FileSystemObjectType>
| Modifier and Type | Method and Description |
|---|---|
static FileSystemObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystemObjectType FILE
public static final FileSystemObjectType FOLDER
public static final FileSystemObjectType INVALID
public static final FileSystemObjectType WEB
public static FileSystemObjectType 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 nullpublic static FileSystemObjectType[] values()
for (FileSystemObjectType c : FileSystemObjectType.values()) System.out.println(c);