public enum Model extends Enum<Model>
| Enum Constant and Description |
|---|
BVM |
CATS |
GSVM |
LSVM |
MBVM |
MRVM |
SRVM |
| Modifier and Type | Method and Description |
|---|---|
static String |
allModels() |
static Model |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Model[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Model BVM
public static final Model MBVM
public static final Model SRVM
public static final Model MRVM
public static final Model LSVM
public static final Model GSVM
public static final Model CATS
public static Model[] values()
for (Model c : Model.values()) System.out.println(c);
public static Model 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 static String allModels()
Copyright © 2018. All rights reserved.