@Beta(value=V1_7_0) public enum SqlDatabaseBasicStorage extends Enum<SqlDatabaseBasicStorage>
Enum Constant and Description |
---|
MAX_1_GB
1 GB storage capacity available for the database.
|
MAX_100_MB
100 MB storage capacity available for the database.
|
MAX_2_GB
2 GB storage capacity available for the database.
|
MAX_500_MB
100 MB storage capacity available for the database.
|
Modifier and Type | Method and Description |
---|---|
long |
capacity() |
long |
capacityInMB() |
static SqlDatabaseBasicStorage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlDatabaseBasicStorage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlDatabaseBasicStorage MAX_100_MB
public static final SqlDatabaseBasicStorage MAX_500_MB
public static final SqlDatabaseBasicStorage MAX_1_GB
public static final SqlDatabaseBasicStorage MAX_2_GB
public static SqlDatabaseBasicStorage[] values()
for (SqlDatabaseBasicStorage c : SqlDatabaseBasicStorage.values()) System.out.println(c);
public static SqlDatabaseBasicStorage 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 long capacityInMB()
public long capacity()
Copyright © 2019. All rights reserved.