public enum ONETVersion extends Enum<ONETVersion>
| Enum Constant and Description |
|---|
ONET2010
ONET 2010
|
ONET2019
ONET 2010
|
| Modifier and Type | Method and Description |
|---|---|
static ONETVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ONETVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="2010") public static final ONETVersion ONET2010
@SerializedName(value="2019") public static final ONETVersion ONET2019
public static ONETVersion[] values()
for (ONETVersion c : ONETVersion.values()) System.out.println(c);
public static ONETVersion 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 © 2023. All rights reserved.