public enum FileDataType extends java.lang.Enum<FileDataType>
File
.Modifier and Type | Method and Description |
---|---|
boolean |
isAscii() |
boolean |
isBinary() |
boolean |
isDirectory() |
boolean |
isUnknown() |
static FileDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileDataType ASCII
public static final FileDataType BINARY
public static final FileDataType DIRECTORY
public static final FileDataType UNKNOWN
public static FileDataType[] values()
for (FileDataType c : FileDataType.values()) System.out.println(c);
public static FileDataType 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 boolean isAscii()
public boolean isBinary()
public boolean isDirectory()
public boolean isUnknown()
Copyright © 2014 EsprIT-Systems. All Rights Reserved.