-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathbreak.xml
More file actions
executable file
·54 lines (38 loc) · 852 Bytes
/
Copy pathbreak.xml
File metadata and controls
executable file
·54 lines (38 loc) · 852 Bytes
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>break</name>
<category>Control</category>
<subcategory>Conditionals</subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
char letter = 'B';
switch(letter) {
case 'A':
println("Alpha"); // Does not execute
break;
case 'B':
println("Bravo"); // Prints "Bravo"
break;
default:
println("Zulu"); // Does not execute
break;
}
]]></code>
</example>
<description><![CDATA[
Ends the execution of a structure such as <b>switch</b>, <b>for</b>, or <b>while</b> and jumps to the next statement after.
]]></description>
<syntax></syntax>
<returns></returns>
<related>
switch
for
while
</related>
<availability>1.0</availability>
<type>Keyword</type>
<partof>Java</partof>
<level>extended</level>
</root>