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