108 lines
1.5 KiB
Java
108 lines
1.5 KiB
Java
|
|
package com.sforce.soap.tooling;
|
||
|
|
|
||
|
|
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 CanvasLocationOptions {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : None
|
||
|
|
*/
|
||
|
|
None("None"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : Chatter
|
||
|
|
*/
|
||
|
|
Chatter("Chatter"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : UserProfile
|
||
|
|
*/
|
||
|
|
UserProfile("UserProfile"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : Visualforce
|
||
|
|
*/
|
||
|
|
Visualforce("Visualforce"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : Aura
|
||
|
|
*/
|
||
|
|
Aura("Aura"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : Publisher
|
||
|
|
*/
|
||
|
|
Publisher("Publisher"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ChatterFeed
|
||
|
|
*/
|
||
|
|
ChatterFeed("ChatterFeed"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : ServiceDesk
|
||
|
|
*/
|
||
|
|
ServiceDesk("ServiceDesk"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : OpenCTI
|
||
|
|
*/
|
||
|
|
OpenCTI("OpenCTI"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : AppLauncher
|
||
|
|
*/
|
||
|
|
AppLauncher("AppLauncher"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : MobileNav
|
||
|
|
*/
|
||
|
|
MobileNav("MobileNav"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : PageLayout
|
||
|
|
*/
|
||
|
|
PageLayout("PageLayout"),
|
||
|
|
|
||
|
|
;
|
||
|
|
|
||
|
|
public static Map<String, String> valuesToEnums;
|
||
|
|
|
||
|
|
static {
|
||
|
|
valuesToEnums = new HashMap<String, String>();
|
||
|
|
for (CanvasLocationOptions e : EnumSet.allOf(CanvasLocationOptions.class)) {
|
||
|
|
valuesToEnums.put(e.toString(), e.name());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private String value;
|
||
|
|
|
||
|
|
private CanvasLocationOptions(String value) {
|
||
|
|
this.value = value;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return value;
|
||
|
|
}
|
||
|
|
}
|