public enum NativeLanguage extends Enum<NativeLanguage>
| Enum Constant and Description |
|---|
C_SHARP |
JAVA |
JAVASCRIPT |
JULIA |
PYTHON |
R |
| Modifier and Type | Method and Description |
|---|---|
static NativeLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NativeLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeLanguage C_SHARP
public static final NativeLanguage JAVA
public static final NativeLanguage JAVASCRIPT
public static final NativeLanguage JULIA
public static final NativeLanguage R
public static final NativeLanguage PYTHON
public static NativeLanguage[] values()
for (NativeLanguage c : NativeLanguage.values()) System.out.println(c);
public static NativeLanguage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.