public static enum Language.Builtin extends java.lang.Enum<Language.Builtin> implements Language
Language.Builtin| Modifier and Type | Method and Description |
|---|---|
java.util.Set<java.lang.String> |
getFileExtensions() |
java.lang.String |
getName() |
java.util.Set<LanguageConstruct> |
getSupportedConstructs() |
static Language.Builtin |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Language.Builtin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Language.Builtin JAVA
public static final Language.Builtin GROOVY
public static Language.Builtin[] values()
for (Language.Builtin c : Language.Builtin.values()) System.out.println(c);
public static Language.Builtin 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 java.lang.String getName()
public java.util.Set<java.lang.String> getFileExtensions()
getFileExtensions in interface Languagepublic java.util.Set<LanguageConstruct> getSupportedConstructs()
getSupportedConstructs in interface Language