public static enum Catalog.CloudName extends java.lang.Enum<Catalog.CloudName>
| Enum Constant and Description | 
|---|
| AWSAmazon Web Services | 
| AZUREMicrosoft Azure | 
| GCPGoogle Cloud Platform | 
| ON_PREMISENot running on cloud | 
| OTHEROther cloud providers | 
| Modifier and Type | Method and Description | 
|---|---|
| static Catalog.CloudName | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Catalog.CloudName[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Catalog.CloudName AWS
public static final Catalog.CloudName AZURE
public static final Catalog.CloudName GCP
public static final Catalog.CloudName ON_PREMISE
public static final Catalog.CloudName OTHER
public static Catalog.CloudName[] values()
for (Catalog.CloudName c : Catalog.CloudName.values()) System.out.println(c);
public static Catalog.CloudName 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