public enum BootstrapVersion extends Enum<BootstrapVersion>
| Enum Constant and Description |
|---|
BOOTSTRAP_VERSION_3 |
BOOTSTRAP_VERSION_4 |
| Modifier and Type | Method and Description |
|---|---|
static BootstrapVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootstrapVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootstrapVersion BOOTSTRAP_VERSION_3
public static final BootstrapVersion BOOTSTRAP_VERSION_4
public static BootstrapVersion[] values()
for (BootstrapVersion c : BootstrapVersion.values()) System.out.println(c);
public static BootstrapVersion 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 © 2017. All rights reserved.