org.apache.commons.vfs2
public enum FileType extends java.lang.Enum<FileType>
Enum Constant and Description |
---|
FILE
A regular file.
|
FILE_OR_FOLDER
A file or folder.
|
FOLDER
A folder.
|
IMAGINARY
A file that does not exist.
|
Modifier and Type | Method and Description |
---|---|
java.lang.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.
|
java.lang.String |
toString()
Returns the name of this type.
|
static FileType |
valueOf(java.lang.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.
|
public static final FileType FOLDER
public static final FileType FILE
public static final FileType FILE_OR_FOLDER
public static final FileType IMAGINARY
public static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);
public static FileType 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 java.lang.String toString()
toString
in class java.lang.Enum<FileType>
public java.lang.String getName()
public boolean hasChildren()
public boolean hasContent()
public boolean hasAttributes()
Copyright © 2002-2014 The Apache Software Foundation. All Rights Reserved.