-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbrowser_site_compatibility_mode.go
67 lines (65 loc) · 2.96 KB
/
browser_site_compatibility_mode.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package models
type BrowserSiteCompatibilityMode int
const (
// Loads the site using default compatibility mode.
DEFAULT_BROWSERSITECOMPATIBILITYMODE BrowserSiteCompatibilityMode = iota
// Loads the site in internetExplorer8 Enterprise Mode
INTERNETEXPLORER8ENTERPRISE_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer7 Enterprise Mode
INTERNETEXPLORER7ENTERPRISE_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer11
INTERNETEXPLORER11_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer10
INTERNETEXPLORER10_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer9
INTERNETEXPLORER9_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer8
INTERNETEXPLORER8_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer7
INTERNETEXPLORER7_BROWSERSITECOMPATIBILITYMODE
// Loads the site in internetExplorer5
INTERNETEXPLORER5_BROWSERSITECOMPATIBILITYMODE
// Placeholder for evolvable enum, but this enum is never returned to the caller, so it shouldn't be necessary.
UNKNOWNFUTUREVALUE_BROWSERSITECOMPATIBILITYMODE
)
func (i BrowserSiteCompatibilityMode) String() string {
return []string{"default", "internetExplorer8Enterprise", "internetExplorer7Enterprise", "internetExplorer11", "internetExplorer10", "internetExplorer9", "internetExplorer8", "internetExplorer7", "internetExplorer5", "unknownFutureValue"}[i]
}
func ParseBrowserSiteCompatibilityMode(v string) (any, error) {
result := DEFAULT_BROWSERSITECOMPATIBILITYMODE
switch v {
case "default":
result = DEFAULT_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer8Enterprise":
result = INTERNETEXPLORER8ENTERPRISE_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer7Enterprise":
result = INTERNETEXPLORER7ENTERPRISE_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer11":
result = INTERNETEXPLORER11_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer10":
result = INTERNETEXPLORER10_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer9":
result = INTERNETEXPLORER9_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer8":
result = INTERNETEXPLORER8_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer7":
result = INTERNETEXPLORER7_BROWSERSITECOMPATIBILITYMODE
case "internetExplorer5":
result = INTERNETEXPLORER5_BROWSERSITECOMPATIBILITYMODE
case "unknownFutureValue":
result = UNKNOWNFUTUREVALUE_BROWSERSITECOMPATIBILITYMODE
default:
return nil, nil
}
return &result, nil
}
func SerializeBrowserSiteCompatibilityMode(values []BrowserSiteCompatibilityMode) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i BrowserSiteCompatibilityMode) isMultiValue() bool {
return false
}