public enum JavaEnum extends Enum<JavaEnum>
| Enum Constant and Description |
|---|
V1_1
V1_1
|
V1_2
V1_2
|
V1_3
V1_3
|
V1_4
V1_4
|
V1_5
V1_5
|
V1_6
V1_6
|
V1_7
V1_7
|
V1_8
V1_8
|
| Modifier and Type | Method and Description |
|---|---|
int |
getOpCodes() |
static JavaEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaEnum V1_1
public static final JavaEnum V1_2
public static final JavaEnum V1_3
public static final JavaEnum V1_4
public static final JavaEnum V1_5
public static final JavaEnum V1_6
public static final JavaEnum V1_7
public static final JavaEnum V1_8
public static JavaEnum[] values()
for (JavaEnum c : JavaEnum.values()) System.out.println(c);
public static JavaEnum 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 int getOpCodes()
Copyright © 2018 Esfinge Framework. All rights reserved.