Package org.insa.graphs.gui.utils
Enum FileUtils.FolderType
- java.lang.Object
-
- java.lang.Enum<FileUtils.FolderType>
-
- org.insa.graphs.gui.utils.FileUtils.FolderType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FileUtils.FolderType>
- Enclosing class:
- FileUtils
public static enum FileUtils.FolderType extends java.lang.Enum<FileUtils.FolderType>
Type of folder with associated preferred folder and path filters.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Map
Folder type for graph files input (*.mapgr).PathInput
Folder type for path inputs (*.path).PathOutput
Folder type for path outputs (*.path).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileUtils.FolderType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileUtils.FolderType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Map
public static final FileUtils.FolderType Map
Folder type for graph files input (*.mapgr).
-
PathInput
public static final FileUtils.FolderType PathInput
Folder type for path inputs (*.path).
-
PathOutput
public static final FileUtils.FolderType PathOutput
Folder type for path outputs (*.path).
-
-
Method Detail
-
values
public static FileUtils.FolderType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FileUtils.FolderType c : FileUtils.FolderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileUtils.FolderType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-