-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbrowser_site_target_environment.go
51 lines (49 loc) · 1.94 KB
/
browser_site_target_environment.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package models
type BrowserSiteTargetEnvironment int
const (
// Open in Internet Explorer Mode
INTERNETEXPLORERMODE_BROWSERSITETARGETENVIRONMENT BrowserSiteTargetEnvironment = iota
// Open in standalone Internet Explorer 11
INTERNETEXPLORER11_BROWSERSITETARGETENVIRONMENT
// Open in Microsoft Edge
MICROSOFTEDGE_BROWSERSITETARGETENVIRONMENT
// Configurable type
CONFIGURABLE_BROWSERSITETARGETENVIRONMENT
// Open in the browser the employee chooses.
NONE_BROWSERSITETARGETENVIRONMENT
// Placeholder for evolvable enum, but this enum is never returned to the caller, so it shouldn't be necessary.
UNKNOWNFUTUREVALUE_BROWSERSITETARGETENVIRONMENT
)
func (i BrowserSiteTargetEnvironment) String() string {
return []string{"internetExplorerMode", "internetExplorer11", "microsoftEdge", "configurable", "none", "unknownFutureValue"}[i]
}
func ParseBrowserSiteTargetEnvironment(v string) (any, error) {
result := INTERNETEXPLORERMODE_BROWSERSITETARGETENVIRONMENT
switch v {
case "internetExplorerMode":
result = INTERNETEXPLORERMODE_BROWSERSITETARGETENVIRONMENT
case "internetExplorer11":
result = INTERNETEXPLORER11_BROWSERSITETARGETENVIRONMENT
case "microsoftEdge":
result = MICROSOFTEDGE_BROWSERSITETARGETENVIRONMENT
case "configurable":
result = CONFIGURABLE_BROWSERSITETARGETENVIRONMENT
case "none":
result = NONE_BROWSERSITETARGETENVIRONMENT
case "unknownFutureValue":
result = UNKNOWNFUTUREVALUE_BROWSERSITETARGETENVIRONMENT
default:
return nil, nil
}
return &result, nil
}
func SerializeBrowserSiteTargetEnvironment(values []BrowserSiteTargetEnvironment) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i BrowserSiteTargetEnvironment) isMultiValue() bool {
return false
}