public enum ViaLanguage extends Enum<ViaLanguage>
| Enum Constant and Description |
|---|
JAVA |
JAVA_SCRIPT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ViaLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViaLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViaLanguage JAVA
public static final ViaLanguage JAVA_SCRIPT
public static ViaLanguage[] values()
for (ViaLanguage c : ViaLanguage.values()) System.out.println(c);
public static ViaLanguage 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 nullpublic String toString()
toString in class Enum<ViaLanguage>Copyright © 2014–2020 Checkmarx. All rights reserved.