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 | Field and Description |
---|---|
private boolean |
hasAttrs
true if the FileType has attributes
|
private boolean |
hasChildren
true if the FileType can have children
|
private boolean |
hasContent
true if the FileType can have content
|
private java.lang.String |
name
The name of the FileType
|
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
private final java.lang.String name
private final boolean hasChildren
private final boolean hasContent
private final boolean hasAttrs
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()