public enum NationalCloud extends java.lang.Enum<NationalCloud>
| Enum Constant and Description |
|---|
China |
Germany |
Global |
UsGovernment |
| Modifier and Type | Method and Description |
|---|---|
static NationalCloud |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NationalCloud[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NationalCloud Global
public static final NationalCloud China
public static final NationalCloud Germany
public static final NationalCloud UsGovernment
public static NationalCloud[] values()
for (NationalCloud c : NationalCloud.values()) System.out.println(c);
public static NationalCloud valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null