Package jadx.gui.ui.filedialog
Enum FileOpenMode
- java.lang.Object
-
- java.lang.Enum<FileOpenMode>
-
- jadx.gui.ui.filedialog.FileOpenMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FileOpenMode>
public enum FileOpenMode extends java.lang.Enum<FileOpenMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDCUSTOM_OPENCUSTOM_SAVEEXPORTEXPORT_NODEEXPORT_NODE_FOLDEROPENOPEN_PROJECTSAVE_PROJECT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileOpenModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FileOpenMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN
public static final FileOpenMode OPEN
-
OPEN_PROJECT
public static final FileOpenMode OPEN_PROJECT
-
ADD
public static final FileOpenMode ADD
-
SAVE_PROJECT
public static final FileOpenMode SAVE_PROJECT
-
EXPORT
public static final FileOpenMode EXPORT
-
CUSTOM_SAVE
public static final FileOpenMode CUSTOM_SAVE
-
CUSTOM_OPEN
public static final FileOpenMode CUSTOM_OPEN
-
EXPORT_NODE
public static final FileOpenMode EXPORT_NODE
-
EXPORT_NODE_FOLDER
public static final FileOpenMode EXPORT_NODE_FOLDER
-
-
Method Detail
-
values
public static FileOpenMode[] 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 (FileOpenMode c : FileOpenMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileOpenMode 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
-
-