public enum Regions extends Enum<Regions>
Enum Constant and Description |
---|
JP_WEST_1 |
Modifier and Type | Field and Description |
---|---|
static Regions |
DEFAULT_REGION
初めてIIJ GIOストレージ&アナリシスサービスを使うとき、
日本にいる新しい顧客に勧めるデフォルトのリージョン。
|
Modifier and Type | Method and Description |
---|---|
static Regions |
fromName(String regionName)
リージョン名に一致するリージョン列挙子を返します。
|
String |
getName()
このリージョンの名称。それを特定するためにregions.xmlファイルが使用されます。
The name of this region, used in the regions.xml file to identify it.
|
static Regions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Regions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Regions JP_WEST_1
public static final Regions DEFAULT_REGION
public static Regions[] values()
for (Regions c : Regions.values()) System.out.println(c);
public static Regions 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 Regions fromName(String regionName)
regionName
- リージョンの名称。例えば、JP-WEST1public String getName()
Copyright © 2018. All rights reserved.