| Enum Constant and Description |
|---|
GM
The Green-Marl compiler.
|
JAVA
The PGX Algorithm Java compiler.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toKey() |
java.lang.String |
toString() |
static Compiler |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Compiler[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Compiler GM
public static final Compiler JAVA
public java.lang.String toKey()
public java.lang.String toString()
toString in class java.lang.Enum<Compiler>public static Compiler 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 Compiler[] values()
for (Compiler c : Compiler.values()) System.out.println(c);
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.