|
@@ -1,34 +1,34 @@
|
1
|
1
|
#BlueJ class context
|
2
|
2
|
comment0.target=StringParser
|
3
|
|
-comment0.text=\n\ An\ introduction\ to\ Strings\ and\ String\ methods.\n\n\ @author\ Wilhem\ Alcivar\n
|
|
3
|
+comment0.text=\r\n\ An\ introduction\ to\ Strings\ and\ String\ methods.\r\n\r\n\ @author\ Wilhem\ Alcivar\r\n
|
4
|
4
|
comment1.params=s
|
5
|
5
|
comment1.target=java.lang.String\ upperCaseString(java.lang.String)
|
6
|
|
-comment1.text=\n\ Takes\ a\ String\ and\ returns\ that\ String\ with\ all\ characters\ uppercased.\n\ E.G.\ cat\ would\ become\ CAT.\ dOnUt\ would\ become\ DONUT.\n\n\ @param\ s\n\ @return\ String\n
|
|
6
|
+comment1.text=\r\n\ Takes\ a\ String\ and\ returns\ that\ String\ with\ all\ characters\ uppercased.\r\n\ E.G.\ cat\ would\ become\ CAT.\ dOnUt\ would\ become\ DONUT.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
7
|
7
|
comment10.params=s1\ s2
|
8
|
8
|
comment10.target=java.lang.Boolean\ isEqualIgnoreCase(java.lang.String,\ java.lang.String)
|
9
|
|
-comment10.text=\n\ Takes\ in\ two\ strings\ and\ returns\ true\ if\ they\ are\ equal\n\ E.G.\ example\ and\ shelf\ would\ return\ false.\ \n\ cat\ and\ CaT\ would\ return\ true.\ \n\ Dog\ and\ Dog\ would\ return\ true\n\n\ @param\ s1\n\ @param\ s2\n\ @return\ String\n
|
|
9
|
+comment10.text=\r\n\ Takes\ in\ two\ strings\ and\ returns\ true\ if\ they\ are\ equal\r\n\ E.G.\ example\ and\ shelf\ would\ return\ false.\ \r\n\ cat\ and\ CaT\ would\ return\ true.\ \r\n\ Dog\ and\ Dog\ would\ return\ true\r\n\r\n\ @param\ s1\r\n\ @param\ s2\r\n\ @return\ String\r\n
|
10
|
10
|
comment2.params=s
|
11
|
11
|
comment2.target=java.lang.String\ lowerCaseString(java.lang.String)
|
12
|
|
-comment2.text=\n\ Takes\ a\ String\ and\ returns\ that\ String\ with\ all\ characters\ lowercased.\n\ E.G.\ MOUSE\ would\ become\ mouse.\ dOnUt\ would\ become\ donut.\n\n\ @param\ s\n\ @return\ String\n
|
|
12
|
+comment2.text=\r\n\ Takes\ a\ String\ and\ returns\ that\ String\ with\ all\ characters\ lowercased.\r\n\ E.G.\ MOUSE\ would\ become\ mouse.\ dOnUt\ would\ become\ donut.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
13
|
13
|
comment3.params=s
|
14
|
14
|
comment3.target=java.lang.Character\ getFirstCharacter(java.lang.String)
|
15
|
|
-comment3.text=\n\ Takes\ a\ String\ and\ returns\ the\ first\ character\ of\ that\ string.\n\ E.G.\ cat\ would\ return\ c.\ Embark\ would\ return\ E.\n\n\ @param\ s\n\ @return\ String\n
|
|
15
|
+comment3.text=\r\n\ Takes\ a\ String\ and\ returns\ the\ first\ character\ of\ that\ string.\r\n\ E.G.\ cat\ would\ return\ c.\ Embark\ would\ return\ E.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
16
|
16
|
comment4.params=s\ n
|
17
|
17
|
comment4.target=java.lang.Character\ getNthCharacter(java.lang.String,\ java.lang.Integer)
|
18
|
|
-comment4.text=\n\ Takes\ a\ String\ and\ returns\ the\ character\ at\ index\ n\ of\ that\ string.\n\ E.G.\ cat,\ 2\ would\ return\ t.\ Embark,\ 4\ would\ return\ r.\n\n\ @param\ s\n\ @param\ n\n\ @return\ String\n
|
|
18
|
+comment4.text=\r\n\ Takes\ a\ String\ and\ returns\ the\ character\ at\ index\ n\ of\ that\ string.\r\n\ E.G.\ cat,\ 2\ would\ return\ t.\ Embark,\ 4\ would\ return\ r.\r\n\r\n\ @param\ s\r\n\ @param\ n\r\n\ @return\ String\r\n
|
19
|
19
|
comment5.params=s
|
20
|
20
|
comment5.target=java.lang.String\ upperCaseFirstCharacter(java.lang.String)
|
21
|
|
-comment5.text=\n\ Takes\ a\ String\ and\ returns\ that\ string\ with\ the\ first\ character\ uppercased.\n\ E.G.\ cat\ would\ return\ Cat.\ cofFee\ would\ return\ CofFee.\n\n\ @param\ s\n\ @return\ String\n
|
|
21
|
+comment5.text=\r\n\ Takes\ a\ String\ and\ returns\ that\ string\ with\ the\ first\ character\ uppercased.\r\n\ E.G.\ cat\ would\ return\ Cat.\ cofFee\ would\ return\ CofFee.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
22
|
22
|
comment6.params=s
|
23
|
23
|
comment6.target=java.lang.String\ camelCaseString(java.lang.String)
|
24
|
|
-comment6.text=\n\ Takes\ a\ String\ and\ returns\ that\ string\ with\ the\ first\ character\ of\ each\ word\ in\ it\ uppercased\n\ and\ then\ joined.\n\ E.G.\ dog\ whistle\ would\ return\ DogWhistle.\ adjuNCT\ pRoFessOR\ would\ return\ AdjuctProfessor.\n\n\ @param\ s\n\ @return\ String\n
|
|
24
|
+comment6.text=\r\n\ Takes\ a\ String\ and\ returns\ that\ string\ with\ the\ first\ character\ of\ each\ word\ in\ it\ uppercased\r\n\ and\ then\ joined.\r\n\ E.G.\ dog\ whistle\ would\ return\ DogWhistle.\ adjuNCT\ pRoFessOR\ would\ return\ AdjuctProfessor.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
25
|
25
|
comment7.params=s
|
26
|
26
|
comment7.target=java.lang.String\ snakeCaseString(java.lang.String)
|
27
|
|
-comment7.text=\n\ Takes\ a\ String\ and\ returns\ that\ string\ with\ each\ character\ lowercased\n\ and\ then\ joined\ with\ an\ underscore\n\ E.G.\ dog\ whistle\ would\ return\ dog_whistle.\ adjuNCT\ pRoFessOR\ would\ return\ adjuct_professor.\n\n\ @param\ s\n\ @return\ String\n
|
|
27
|
+comment7.text=\r\n\ Takes\ a\ String\ and\ returns\ that\ string\ with\ each\ character\ lowercased\r\n\ and\ then\ joined\ with\ an\ underscore\r\n\ E.G.\ dog\ whistle\ would\ return\ dog_whistle.\ adjuNCT\ pRoFessOR\ would\ return\ adjuct_professor.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
28
|
28
|
comment8.params=s
|
29
|
29
|
comment8.target=java.lang.Integer\ getLength(java.lang.String)
|
30
|
|
-comment8.text=\n\ Takes\ a\ String\ and\ returns\ the\ length\ of\ that\ string\n\ E.G.\ cat\ would\ return\ 3.\ extra\ would\ return\ 5.\n\n\ @param\ s\n\ @return\ String\n
|
|
30
|
+comment8.text=\r\n\ Takes\ a\ String\ and\ returns\ the\ length\ of\ that\ string\r\n\ E.G.\ cat\ would\ return\ 3.\ extra\ would\ return\ 5.\r\n\r\n\ @param\ s\r\n\ @return\ String\r\n
|
31
|
31
|
comment9.params=s1\ s2
|
32
|
32
|
comment9.target=java.lang.Boolean\ isEqual(java.lang.String,\ java.lang.String)
|
33
|
|
-comment9.text=\n\ Takes\ in\ two\ strings\ and\ returns\ true\ if\ they\ are\ equal\n\ E.G.\ example\ and\ shelf\ would\ return\ false.\ \n\ cat\ and\ CaT\ would\ return\ false.\ \n\ Dog\ and\ Dog\ would\ return\ true\n\n\ @param\ s1\n\ @param\ s2\n\ @return\ String\n
|
|
33
|
+comment9.text=\r\n\ Takes\ in\ two\ strings\ and\ returns\ true\ if\ they\ are\ equal\r\n\ E.G.\ example\ and\ shelf\ would\ return\ false.\ \r\n\ cat\ and\ CaT\ would\ return\ false.\ \r\n\ Dog\ and\ Dog\ would\ return\ true\r\n\r\n\ @param\ s1\r\n\ @param\ s2\r\n\ @return\ String\r\n
|
34
|
34
|
numComments=11
|