public enum ArduinoClassExample extends java.lang.Enum<ArduinoClassExample>
Enum Constant and Description |
---|
AUTHOR |
CLASSNAME |
HEADERCOMMENTS |
ORGANIZATION |
PRIVATEMETHODS |
PUBLICMETHODS |
SUPPORTEDBOARDS |
VARIABLES |
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 ArduinoClassExample |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArduinoClassExample[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArduinoClassExample CLASSNAME
public static final ArduinoClassExample AUTHOR
public static final ArduinoClassExample ORGANIZATION
public static final ArduinoClassExample HEADERCOMMENTS
public static final ArduinoClassExample SUPPORTEDBOARDS
public static final ArduinoClassExample VARIABLES
public static final ArduinoClassExample PRIVATEMETHODS
public static final ArduinoClassExample PUBLICMETHODS
public static ArduinoClassExample[] values()
for (ArduinoClassExample c : ArduinoClassExample.values()) System.out.println(c);
public static ArduinoClassExample 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<ArduinoClassExample>