|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FileType>
org.apache.commons.vfs2.FileType
public enum FileType
An enumerated type that represents a file's type.
| Enum Constant Summary | |
|---|---|
FILE
A regular file. |
|
FILE_OR_FOLDER
A file or folder. |
|
FOLDER
A folder. |
|
IMAGINARY
A file that does not exist. |
|
| Method Summary | |
|---|---|
String |
getName()
Returns the name of this type. |
boolean |
hasAttributes()
Returns true if files of this type may have attributes. |
boolean |
hasChildren()
Returns true if files of this type may contain other files. |
boolean |
hasContent()
Returns true if files of this type may have data content. |
String |
toString()
Returns the name of this type. |
static FileType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FileType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final FileType FOLDER
public static final FileType FILE
public static final FileType FILE_OR_FOLDER
public static final FileType IMAGINARY
| Method Detail |
|---|
public static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);
public static FileType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String toString()
toString in class Enum<FileType>public String getName()
public boolean hasChildren()
public boolean hasContent()
public boolean hasAttributes()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||