public enum Lang extends Enum<Lang>
Enum Constant and Description |
---|
CPP
C++ lang
|
CS
C# lang
|
JAVA
Java lang
|
MD
Binary Protocol Document representing a human readable document in English
|
PY
PYTHON lang
|
Modifier and Type | Method and Description |
---|---|
static Lang |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lang[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lang JAVA
public static final Lang CS
public static final Lang CPP
public static final Lang PY
public static final Lang MD
public static Lang[] values()
for (Lang c : Lang.values()) System.out.println(c);
public static Lang 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 Hazelcast, Inc.. All Rights Reserved.