public enum ArduinoClassPrompts extends java.lang.Enum<ArduinoClassPrompts>
Enum Constant and Description |
---|
AUTHOR |
CLASSNAME |
HEADERCOMMENTS |
ORGANIZATION |
PRIVATEMETHODS |
PUBLICMETHODS |
SUPPORTEDBOARDS |
VARIABLES |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
prompt |
Modifier and Type | Method and Description |
---|---|
static void |
main(java.lang.String[] args)
Displays capabilities of the enum
|
java.lang.String |
toString()
returns a string representation of the enum, with name, prompt, and format
|
static ArduinoClassPrompts |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArduinoClassPrompts[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArduinoClassPrompts CLASSNAME
public static final ArduinoClassPrompts AUTHOR
public static final ArduinoClassPrompts ORGANIZATION
public static final ArduinoClassPrompts HEADERCOMMENTS
public static final ArduinoClassPrompts SUPPORTEDBOARDS
public static final ArduinoClassPrompts VARIABLES
public static final ArduinoClassPrompts PRIVATEMETHODS
public static final ArduinoClassPrompts PUBLICMETHODS
public static ArduinoClassPrompts[] values()
for (ArduinoClassPrompts c : ArduinoClassPrompts.values()) System.out.println(c);
public static ArduinoClassPrompts 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 void main(java.lang.String[] args)
public java.lang.String toString()
toString
in class java.lang.Enum<ArduinoClassPrompts>