public enum Ide extends Enum<Ide>
| Modifier and Type | Method and Description |
|---|---|
String |
getEffectiveCommand()
Attempts to launch the default IDE script.
|
void |
setMachineSpecificCommand(String machineSpecificCommand) |
String |
toString() |
static Ide |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ide IDEA
public static final Ide ECLIPSE
public static final Ide VSCODE
public static final Ide NETBEANS
public static Ide[] values()
for (Ide c : Ide.values()) System.out.println(c);
public static Ide 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 nullpublic String getEffectiveCommand()
public void setMachineSpecificCommand(String machineSpecificCommand)
Copyright © 2021 JBoss by Red Hat. All rights reserved.