-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.json
86 lines (86 loc) · 1.59 KB
/
default.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"attribute": [
{
"returnType": "void",
"toggle": {
"method": {
"body": "if(!${toggle}) {return;}"
}
}
},
{
"returnType": "byte",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Byte.MIN_VALUE;}"
}
}
},
{
"returnType": "short",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Short.MIN_VALUE;}"
}
}
},
{
"returnType": "int",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Integer.MIN_VALUE;}"
}
}
},
{
"returnType": "long",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Long.MIN_VALUE;}"
}
}
},
{
"returnType": "float",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Float.MIN_VALUE;}"
}
}
},
{
"returnType": "double",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Double.MIN_VALUE;}"
}
}
},
{
"returnType": "boolean",
"toggle": {
"method": {
"body": "if(!${toggle}) {return false;}"
}
}
},
{
"returnType": "char",
"toggle": {
"method": {
"body": "if(!${toggle}) {return Character.MIN_VALUE;}"
}
}
},
{
"returnType": "default",
"toggle": {
"method": {
"body": "if(!${toggle}) {return null;}"
}
}
}
],
"id": "JAVA~1",
"property": "CIRCUIT_BREAKER~"
}