162 lines
2.2 KiB
Java
162 lines
2.2 KiB
Java
|
|
package com.sforce.soap.metadata;
|
||
|
|
|
||
|
|
import java.util.EnumSet;
|
||
|
|
import java.util.HashMap;
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public enum VirtualVisitVisitRegion {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : us_east_1
|
||
|
|
*/
|
||
|
|
us_east_1("us-east-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : us_east_2
|
||
|
|
*/
|
||
|
|
us_east_2("us-east-2"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : us_west_1
|
||
|
|
*/
|
||
|
|
us_west_1("us-west-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : us_west_2
|
||
|
|
*/
|
||
|
|
us_west_2("us-west-2"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : af_south_1
|
||
|
|
*/
|
||
|
|
af_south_1("af-south-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_east_1
|
||
|
|
*/
|
||
|
|
ap_east_1("ap-east-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_south_1
|
||
|
|
*/
|
||
|
|
ap_south_1("ap-south-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_northeast_1
|
||
|
|
*/
|
||
|
|
ap_northeast_1("ap-northeast-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_northeast_2
|
||
|
|
*/
|
||
|
|
ap_northeast_2("ap-northeast-2"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_northeast_3
|
||
|
|
*/
|
||
|
|
ap_northeast_3("ap-northeast-3"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_southeast_1
|
||
|
|
*/
|
||
|
|
ap_southeast_1("ap-southeast-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ap_southeast_2
|
||
|
|
*/
|
||
|
|
ap_southeast_2("ap-southeast-2"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ca_central_1
|
||
|
|
*/
|
||
|
|
ca_central_1("ca-central-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : eu_central_1
|
||
|
|
*/
|
||
|
|
eu_central_1("eu-central-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : eu_west_1
|
||
|
|
*/
|
||
|
|
eu_west_1("eu-west-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : eu_west_2
|
||
|
|
*/
|
||
|
|
eu_west_2("eu-west-2"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : eu_west_3
|
||
|
|
*/
|
||
|
|
eu_west_3("eu-west-3"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : eu_south_1
|
||
|
|
*/
|
||
|
|
eu_south_1("eu-south-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : eu_north_1
|
||
|
|
*/
|
||
|
|
eu_north_1("eu-north-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : me_south_1
|
||
|
|
*/
|
||
|
|
me_south_1("me-south-1"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : sa_east_1
|
||
|
|
*/
|
||
|
|
sa_east_1("sa-east-1"),
|
||
|
|
|
||
|
|
;
|
||
|
|
|
||
|
|
public static Map<String, String> valuesToEnums;
|
||
|
|
|
||
|
|
static {
|
||
|
|
valuesToEnums = new HashMap<String, String>();
|
||
|
|
for (VirtualVisitVisitRegion e : EnumSet.allOf(VirtualVisitVisitRegion.class)) {
|
||
|
|
valuesToEnums.put(e.toString(), e.name());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private String value;
|
||
|
|
|
||
|
|
private VirtualVisitVisitRegion(String value) {
|
||
|
|
this.value = value;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return value;
|
||
|
|
}
|
||
|
|
}
|