Modifier and Type | Field and Description |
---|---|
private int |
value |
Modifier and Type | Method and Description |
---|---|
int |
backendValue() |
boolean |
equals(int value) |
static FileType |
guessTypeFromFilePath(java.lang.String path) |
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 CT
public static final FileType DBN
public static final FileType PFS
public static final FileType SAV
public static final FileType SEQ
public static final FileType SHAPE
public int backendValue()
public boolean equals(int value)
public static FileType guessTypeFromFilePath(java.lang.String path)
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 static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);