public static enum FileChooser.Mode extends Enum<FileChooser.Mode>
| Enum Constant and Description |
|---|
LOAD
load taclets into current proof environment but allow also their proof
|
PROOF
only prove taclets but do not add them to current proof
|
| Modifier and Type | Method and Description |
|---|---|
static FileChooser.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileChooser.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileChooser.Mode PROOF
public static final FileChooser.Mode LOAD
public static FileChooser.Mode[] values()
for (FileChooser.Mode c : FileChooser.Mode.values()) System.out.println(c);
public static FileChooser.Mode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null