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