workspace.xml 62KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project version="4">
  3. <component name="ChangeListManager">
  4. <list default="true" id="30b7e4a0-b899-49c3-865c-0311dfadae62" name="Default" comment="">
  5. <change beforePath="$PROJECT_DIR$/.idea/compiler.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/compiler.xml" afterDir="false" />
  6. <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
  7. <change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
  8. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java" afterDir="false" />
  9. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java" afterDir="false" />
  10. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java" afterDir="false" />
  11. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java" afterDir="false" />
  12. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java" afterDir="false" />
  13. <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java" afterDir="false" />
  14. <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java" afterDir="false" />
  15. <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java" afterDir="false" />
  16. <change beforePath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java" afterDir="false" />
  17. <change beforePath="$PROJECT_DIR$/target/PersonWarehouse.leonlog" beforeDir="false" afterPath="$PROJECT_DIR$/target/PersonWarehouse.leonlog" afterDir="false" />
  18. <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonFactory.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonFactory.class" afterDir="false" />
  19. <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.class" afterDir="false" />
  20. <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ArrayConverter.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ArrayConverter.class" afterDir="false" />
  21. <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ListConverter.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/ListConverter.class" afterDir="false" />
  22. <change beforePath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/StreamConverter.class" beforeDir="false" afterPath="$PROJECT_DIR$/target/classes/com/zipcodewilmington/streams/conversions/StreamConverter.class" afterDir="false" />
  23. <change beforePath="$PROJECT_DIR$/target/global.leonlog" beforeDir="false" afterPath="$PROJECT_DIR$/target/global.leonlog" afterDir="false" />
  24. <change beforePath="$PROJECT_DIR$/target/test-classes/com/zipcodewilmington/streams/TestStreamMap.class" beforeDir="false" />
  25. </list>
  26. <ignored path="$PROJECT_DIR$/out/" />
  27. <ignored path="$PROJECT_DIR$/target/" />
  28. <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
  29. <option name="SHOW_DIALOG" value="false" />
  30. <option name="HIGHLIGHT_CONFLICTS" value="true" />
  31. <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
  32. <option name="LAST_RESOLUTION" value="IGNORE" />
  33. </component>
  34. <component name="ExportTestResults" outputFolder="$PROJECT_DIR$" openResultsInEditor="true" userTempatePath="" />
  35. <component name="FUSProjectUsageTrigger">
  36. <session id="-813253540">
  37. <usages-collector id="statistics.lifecycle.project">
  38. <counts>
  39. <entry key="project.open.time.2" value="1" />
  40. <entry key="project.opened" value="1" />
  41. </counts>
  42. </usages-collector>
  43. <usages-collector id="statistics.file.extensions.open">
  44. <counts>
  45. <entry key="java" value="33" />
  46. <entry key="md" value="3" />
  47. </counts>
  48. </usages-collector>
  49. <usages-collector id="statistics.file.types.open">
  50. <counts>
  51. <entry key="JAVA" value="33" />
  52. <entry key="Markdown" value="3" />
  53. </counts>
  54. </usages-collector>
  55. <usages-collector id="statistics.file.extensions.edit">
  56. <counts>
  57. <entry key="java" value="3041" />
  58. </counts>
  59. </usages-collector>
  60. <usages-collector id="statistics.file.types.edit">
  61. <counts>
  62. <entry key="JAVA" value="3041" />
  63. </counts>
  64. </usages-collector>
  65. </session>
  66. </component>
  67. <component name="FileEditorManager">
  68. <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
  69. <file pinned="false" current-in-tab="true">
  70. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java">
  71. <provider selected="true" editor-type-id="text-editor">
  72. <state relative-caret-position="168">
  73. <caret line="63" column="57" selection-start-line="63" selection-start-column="57" selection-end-line="63" selection-end-column="57" />
  74. <folding>
  75. <element signature="e#1177#1178#0" expanded="true" />
  76. <element signature="e#1219#1220#0" expanded="true" />
  77. <element signature="e#2593#2594#0" expanded="true" />
  78. <element signature="e#2620#2621#0" expanded="true" />
  79. <element signature="e#2813#2814#0" expanded="true" />
  80. <element signature="e#2840#2841#0" expanded="true" />
  81. </folding>
  82. </state>
  83. </provider>
  84. </entry>
  85. </file>
  86. <file pinned="false" current-in-tab="false">
  87. <entry file="file://$PROJECT_DIR$/README.md">
  88. <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
  89. <state split_layout="SPLIT">
  90. <first_editor />
  91. <second_editor />
  92. </state>
  93. </provider>
  94. </entry>
  95. </file>
  96. <file pinned="false" current-in-tab="false">
  97. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConversionAgent.java">
  98. <provider selected="true" editor-type-id="text-editor">
  99. <state relative-caret-position="795">
  100. <caret line="67" column="16" selection-start-line="67" selection-start-column="16" selection-end-line="67" selection-end-column="16" />
  101. </state>
  102. </provider>
  103. </entry>
  104. </file>
  105. <file pinned="false" current-in-tab="false">
  106. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterStream.java">
  107. <provider selected="true" editor-type-id="text-editor">
  108. <state relative-caret-position="90">
  109. <caret line="6" column="69" selection-start-line="6" selection-start-column="69" selection-end-line="6" selection-end-column="69" />
  110. </state>
  111. </provider>
  112. </entry>
  113. </file>
  114. <file pinned="false" current-in-tab="false">
  115. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java">
  116. <provider selected="true" editor-type-id="text-editor">
  117. <state relative-caret-position="450">
  118. <caret line="37" column="62" selection-start-line="37" selection-start-column="62" selection-end-line="37" selection-end-column="62" />
  119. <folding>
  120. <element signature="e#892#893#0" expanded="true" />
  121. <element signature="e#964#965#0" expanded="true" />
  122. <element signature="e#1104#1105#0" expanded="true" />
  123. <element signature="e#1171#1172#0" expanded="true" />
  124. </folding>
  125. </state>
  126. </provider>
  127. </entry>
  128. </file>
  129. <file pinned="false" current-in-tab="false">
  130. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java">
  131. <provider selected="true" editor-type-id="text-editor">
  132. <state relative-caret-position="199">
  133. <caret line="26" lean-forward="true" selection-start-line="26" selection-end-line="26" />
  134. <folding>
  135. <element signature="e#807#808#0" expanded="true" />
  136. <element signature="e#863#864#0" expanded="true" />
  137. <element signature="e#928#929#0" expanded="true" />
  138. <element signature="e#987#988#0" expanded="true" />
  139. </folding>
  140. </state>
  141. </provider>
  142. </entry>
  143. </file>
  144. </leaf>
  145. </component>
  146. <component name="FileTemplateManagerImpl">
  147. <option name="RECENT_TEMPLATES">
  148. <list>
  149. <option value="Kotlin File" />
  150. <option value="Interface" />
  151. <option value="Class" />
  152. </list>
  153. </option>
  154. </component>
  155. <component name="FindInProjectRecents">
  156. <findStrings>
  157. <find>public</find>
  158. <find>static</find>
  159. <find>FilterSyntax.</find>
  160. <find>whose name starts with &quot;A&quot;</find>
  161. <find>public final</find>
  162. <find>.stream</find>
  163. <find>.stream()</find>
  164. <find>Person</find>
  165. <find>people.</find>
  166. </findStrings>
  167. <replaceStrings>
  168. <replace>public static</replace>
  169. <replace />
  170. <replace>filterSyntax.</replace>
  171. <replace>whose name starts with `this.startingCharacter`</replace>
  172. <replace>private final</replace>
  173. <replace>.parallelStream()</replace>
  174. <replace>R</replace>
  175. <replace>getPeople().</replace>
  176. </replaceStrings>
  177. </component>
  178. <component name="Git.Settings">
  179. <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
  180. </component>
  181. <component name="IdeDocumentHistory">
  182. <option name="CHANGED_PATHS">
  183. <list>
  184. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionArray.java" />
  185. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConverterArray.java" />
  186. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionStream.java" />
  187. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConverterStream.java" />
  188. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionList.java" />
  189. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConverterList.java" />
  190. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ArrayConversion.java" />
  191. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ListConversion.java" />
  192. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/StreamConversion.java" />
  193. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionSuite.java" />
  194. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestSuiteConversionRegression.java" />
  195. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ListConverter.java" />
  196. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ArrayConverter.java" />
  197. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConversionAgent.java" />
  198. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/ConversionAgent.java" />
  199. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/exercises/StreamConverter.java" />
  200. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/exercises/TestConstants.java" />
  201. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/lambdas/TestPersonFactory.java" />
  202. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestPersonFactory.java" />
  203. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/DemoStreamFilter.java" />
  204. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/exercises/ConversionAgent.java" />
  205. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/RandomUtils.java" />
  206. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterList.java" />
  207. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterStream.java" />
  208. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestSuiteConversionRegression.java" />
  209. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamMap.java" />
  210. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestConstants.java" />
  211. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWorld.java" />
  212. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/ReflectionUtils.java" />
  213. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPerson.java" />
  214. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonFactory.java" />
  215. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/Person.java" />
  216. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/StringUtils.java" />
  217. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ConversionAgent.java" />
  218. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/DateUtils.java" />
  219. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerWarehouse.java" />
  220. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerHandler.java" />
  221. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/PersonConversionAgent.java" />
  222. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestSuiteAnthropoidRegression.java" />
  223. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamMap.java" />
  224. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestSuiteFullRegression.java" />
  225. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java" />
  226. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java" />
  227. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java" />
  228. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java" />
  229. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java" />
  230. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java" />
  231. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConversionAgent.java" />
  232. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java" />
  233. <option value="$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java" />
  234. <option value="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java" />
  235. </list>
  236. </option>
  237. </component>
  238. <component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
  239. <component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
  240. <component name="JsGulpfileManager">
  241. <detection-done>true</detection-done>
  242. <sorting>DEFINITION_ORDER</sorting>
  243. </component>
  244. <component name="MavenImportPreferences">
  245. <option name="importingSettings">
  246. <MavenImportingSettings>
  247. <option name="importAutomatically" value="true" />
  248. </MavenImportingSettings>
  249. </option>
  250. </component>
  251. <component name="ProjectFrameBounds" fullScreen="true">
  252. <option name="y" value="23" />
  253. <option name="width" value="1280" />
  254. <option name="height" value="725" />
  255. </component>
  256. <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
  257. <component name="ProjectView">
  258. <navigator proportions="" version="1">
  259. <foldersAlwaysOnTop value="true" />
  260. </navigator>
  261. <panes>
  262. <pane id="Scope" />
  263. <pane id="ProjectPane">
  264. <subPane>
  265. <expand>
  266. <path>
  267. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  268. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  269. </path>
  270. <path>
  271. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  272. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  273. <item name="src" type="462c0819:PsiDirectoryNode" />
  274. </path>
  275. <path>
  276. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  277. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  278. <item name="src" type="462c0819:PsiDirectoryNode" />
  279. <item name="main" type="462c0819:PsiDirectoryNode" />
  280. </path>
  281. <path>
  282. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  283. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  284. <item name="src" type="462c0819:PsiDirectoryNode" />
  285. <item name="main" type="462c0819:PsiDirectoryNode" />
  286. <item name="java" type="462c0819:PsiDirectoryNode" />
  287. </path>
  288. <path>
  289. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  290. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  291. <item name="src" type="462c0819:PsiDirectoryNode" />
  292. <item name="main" type="462c0819:PsiDirectoryNode" />
  293. <item name="java" type="462c0819:PsiDirectoryNode" />
  294. <item name="streams" type="462c0819:PsiDirectoryNode" />
  295. </path>
  296. <path>
  297. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  298. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  299. <item name="src" type="462c0819:PsiDirectoryNode" />
  300. <item name="main" type="462c0819:PsiDirectoryNode" />
  301. <item name="java" type="462c0819:PsiDirectoryNode" />
  302. <item name="streams" type="462c0819:PsiDirectoryNode" />
  303. <item name="anthropoid" type="462c0819:PsiDirectoryNode" />
  304. </path>
  305. <path>
  306. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  307. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  308. <item name="src" type="462c0819:PsiDirectoryNode" />
  309. <item name="main" type="462c0819:PsiDirectoryNode" />
  310. <item name="java" type="462c0819:PsiDirectoryNode" />
  311. <item name="streams" type="462c0819:PsiDirectoryNode" />
  312. <item name="conversions" type="462c0819:PsiDirectoryNode" />
  313. </path>
  314. <path>
  315. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  316. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  317. <item name="src" type="462c0819:PsiDirectoryNode" />
  318. <item name="test" type="462c0819:PsiDirectoryNode" />
  319. </path>
  320. <path>
  321. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  322. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  323. <item name="src" type="462c0819:PsiDirectoryNode" />
  324. <item name="test" type="462c0819:PsiDirectoryNode" />
  325. <item name="java" type="462c0819:PsiDirectoryNode" />
  326. </path>
  327. <path>
  328. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  329. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  330. <item name="src" type="462c0819:PsiDirectoryNode" />
  331. <item name="test" type="462c0819:PsiDirectoryNode" />
  332. <item name="java" type="462c0819:PsiDirectoryNode" />
  333. <item name="streams" type="462c0819:PsiDirectoryNode" />
  334. </path>
  335. <path>
  336. <item name="CR-MicroLabs-Streams-And-Lambdas" type="b2602c69:ProjectViewProjectNode" />
  337. <item name="CR-MicroLabs-Streams-And-Lambdas" type="462c0819:PsiDirectoryNode" />
  338. <item name="src" type="462c0819:PsiDirectoryNode" />
  339. <item name="test" type="462c0819:PsiDirectoryNode" />
  340. <item name="java" type="462c0819:PsiDirectoryNode" />
  341. <item name="streams" type="462c0819:PsiDirectoryNode" />
  342. <item name="conversions" type="462c0819:PsiDirectoryNode" />
  343. </path>
  344. </expand>
  345. <select />
  346. </subPane>
  347. </pane>
  348. <pane id="PackagesPane" />
  349. </panes>
  350. </component>
  351. <component name="PropertiesComponent">
  352. <property name="WebServerToolWindowFactoryState" value="false" />
  353. <property name="aspect.path.notification.shown" value="true" />
  354. <property name="com.android.tools.idea.instantapp.provision.ProvisionBeforeRunTaskProvider.myTimeStamp" value="1542584379626" />
  355. <property name="last_opened_file_path" value="$PROJECT_DIR$" />
  356. <property name="project.structure.last.edited" value="Modules" />
  357. <property name="project.structure.proportion" value="0.0" />
  358. <property name="project.structure.side.proportion" value="0.2" />
  359. <property name="settings.editor.selected.configurable" value="reference.projectsettings.compiler.javacompiler" />
  360. </component>
  361. <component name="RecentsManager">
  362. <key name="MoveClassesOrPackagesDialog.RECENTS_KEY">
  363. <recent name="com.zipcodewilmington.streams.anthropoid" />
  364. <recent name="com.zipcodewilmington.lambdas" />
  365. <recent name="com.zipcodewilmington.lambdas.exercises" />
  366. <recent name="com.zipcode" />
  367. </key>
  368. <key name="CopyFile.RECENT_KEYS">
  369. <recent name="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools" />
  370. </key>
  371. <key name="CreateClassDialog.RecentsKey">
  372. <recent name="com.zipcodewilmington.lambdas" />
  373. <recent name="com.zipcodewilmington.lambdas.tools" />
  374. </key>
  375. </component>
  376. <component name="RunDashboard">
  377. <option name="ruleStates">
  378. <list>
  379. <RuleState>
  380. <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
  381. </RuleState>
  382. <RuleState>
  383. <option name="name" value="StatusDashboardGroupingRule" />
  384. </RuleState>
  385. </list>
  386. </option>
  387. </component>
  388. <component name="RunManager" selected="JUnit.All in streamdemo">
  389. <configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
  390. <module name="" />
  391. <option name="TESTING_TYPE" value="0" />
  392. <option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
  393. <option name="METHOD_NAME" value="" />
  394. <option name="CLASS_NAME" value="" />
  395. <option name="PACKAGE_NAME" value="" />
  396. <option name="EXTRA_OPTIONS" value="" />
  397. <option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
  398. <option name="PREFERRED_AVD" value="" />
  399. <option name="CLEAR_LOGCAT" value="false" />
  400. <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
  401. <option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
  402. <option name="FORCE_STOP_RUNNING_APP" value="true" />
  403. <option name="DEBUGGER_TYPE" value="Java" />
  404. <option name="USE_LAST_SELECTED_DEVICE" value="false" />
  405. <option name="PREFERRED_AVD" value="" />
  406. <Java />
  407. <Profilers>
  408. <option name="ENABLE_ADVANCED_PROFILING" value="true" />
  409. <option name="GAPID_ENABLED" value="false" />
  410. <option name="GAPID_DISABLE_PCS" value="false" />
  411. <option name="SUPPORT_LIB_ENABLED" value="true" />
  412. <option name="INSTRUMENTATION_ENABLED" value="true" />
  413. </Profilers>
  414. <method />
  415. </configuration>
  416. <configuration default="true" type="Applet" factoryName="Applet">
  417. <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
  418. <method v="2">
  419. <option name="Make" enabled="true" />
  420. </method>
  421. </configuration>
  422. <configuration default="true" type="Application" factoryName="Application">
  423. <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
  424. <method v="2">
  425. <option name="Make" enabled="true" />
  426. </method>
  427. </configuration>
  428. <configuration name="All in streamdemo" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  429. <module name="streamdemo" />
  430. <option name="PACKAGE_NAME" value="" />
  431. <option name="TEST_OBJECT" value="package" />
  432. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  433. <method v="2">
  434. <option name="Make" enabled="true" />
  435. </method>
  436. </configuration>
  437. <configuration name="TestConversionAgent" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  438. <module name="streamdemo" />
  439. <extension name="coverage">
  440. <pattern>
  441. <option name="PATTERN" value="com.zipcodewilmington.streams.conversions.*" />
  442. <option name="ENABLED" value="true" />
  443. </pattern>
  444. </extension>
  445. <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams.conversions" />
  446. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.streams.conversions.TestConversionAgent" />
  447. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  448. <method v="2">
  449. <option name="Make" enabled="true" />
  450. </method>
  451. </configuration>
  452. <configuration name="TestConversionAgent.testCount" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  453. <module name="streamdemo" />
  454. <extension name="coverage">
  455. <pattern>
  456. <option name="PATTERN" value="com.zipcodewilmington.streams.conversions.*" />
  457. <option name="ENABLED" value="true" />
  458. </pattern>
  459. </extension>
  460. <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams.conversions" />
  461. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.streams.conversions.TestConversionAgent" />
  462. <option name="METHOD_NAME" value="testCount" />
  463. <option name="TEST_OBJECT" value="method" />
  464. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  465. <method v="2">
  466. <option name="Make" enabled="true" />
  467. </method>
  468. </configuration>
  469. <configuration name="TestConversionAgent.testToList" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  470. <module name="streamdemo" />
  471. <extension name="coverage">
  472. <pattern>
  473. <option name="PATTERN" value="com.zipcodewilmington.streams.conversions.*" />
  474. <option name="ENABLED" value="true" />
  475. </pattern>
  476. </extension>
  477. <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams.conversions" />
  478. <option name="MAIN_CLASS_NAME" value="com.zipcodewilmington.streams.conversions.TestConversionAgent" />
  479. <option name="METHOD_NAME" value="testToList" />
  480. <option name="TEST_OBJECT" value="method" />
  481. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  482. <method v="2">
  483. <option name="Make" enabled="true" />
  484. </method>
  485. </configuration>
  486. <configuration default="true" type="JUnit" factoryName="JUnit">
  487. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  488. <method v="2">
  489. <option name="Make" enabled="true" />
  490. </method>
  491. </configuration>
  492. <configuration name="com.zipcodewilmington.streams in streamdemo" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
  493. <module name="streamdemo" />
  494. <extension name="coverage">
  495. <pattern>
  496. <option name="PATTERN" value="com.zipcodewilmington.streams.*" />
  497. <option name="ENABLED" value="true" />
  498. </pattern>
  499. </extension>
  500. <option name="PACKAGE_NAME" value="com.zipcodewilmington.streams" />
  501. <option name="TEST_OBJECT" value="package" />
  502. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  503. <method v="2">
  504. <option name="Make" enabled="true" />
  505. </method>
  506. </configuration>
  507. <configuration default="true" type="JetRunConfigurationType" factoryName="Kotlin">
  508. <module name="looptest" />
  509. <option name="VM_PARAMETERS" />
  510. <option name="PROGRAM_PARAMETERS" />
  511. <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
  512. <option name="ALTERNATIVE_JRE_PATH" />
  513. <option name="PASS_PARENT_ENVS" value="true" />
  514. <option name="MAIN_CLASS_NAME" />
  515. <option name="WORKING_DIRECTORY" />
  516. <method v="2">
  517. <option name="Make" enabled="true" />
  518. </method>
  519. </configuration>
  520. <configuration default="true" type="KotlinStandaloneScriptRunConfigurationType" factoryName="Kotlin script">
  521. <option name="filePath" />
  522. <option name="vmParameters" />
  523. <option name="alternativeJrePath" />
  524. <option name="programParameters" />
  525. <option name="passParentEnvs" value="true" />
  526. <option name="workingDirectory" />
  527. <option name="isAlternativeJrePathEnabled" value="false" />
  528. <option name="VM_PARAMETERS" />
  529. <option name="PROGRAM_PARAMETERS" />
  530. <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
  531. <option name="ALTERNATIVE_JRE_PATH" />
  532. <option name="PASS_PARENT_ENVS" value="true" />
  533. <option name="MAIN_CLASS_NAME" />
  534. <option name="WORKING_DIRECTORY" />
  535. <module name="" />
  536. <option name="filePath" />
  537. <option name="vmParameters" />
  538. <option name="alternativeJrePath" />
  539. <option name="programParameters" />
  540. <option name="passParentEnvs" value="true" />
  541. <option name="workingDirectory" />
  542. <option name="isAlternativeJrePathEnabled" value="false" />
  543. <option name="VM_PARAMETERS" />
  544. <option name="PROGRAM_PARAMETERS" />
  545. <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
  546. <option name="ALTERNATIVE_JRE_PATH" />
  547. <option name="PASS_PARENT_ENVS" value="true" />
  548. <option name="MAIN_CLASS_NAME" />
  549. <option name="WORKING_DIRECTORY" />
  550. <method v="2">
  551. <option name="Make" enabled="true" />
  552. </method>
  553. </configuration>
  554. <configuration default="true" type="TestNG" factoryName="TestNG">
  555. <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
  556. <properties />
  557. <listeners />
  558. <method v="2">
  559. <option name="Make" enabled="true" />
  560. </method>
  561. </configuration>
  562. <configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
  563. <module name="" />
  564. <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
  565. <option name="PROGRAM_PARAMETERS" />
  566. <predefined_log_file id="idea.log" enabled="true" />
  567. <method v="2">
  568. <option name="Make" enabled="true" />
  569. </method>
  570. </configuration>
  571. <list>
  572. <item itemvalue="JUnit.TestConversionAgent" />
  573. <item itemvalue="JUnit.TestConversionAgent.testCount" />
  574. <item itemvalue="JUnit.TestConversionAgent.testToList" />
  575. <item itemvalue="JUnit.com.zipcodewilmington.streams in streamdemo" />
  576. <item itemvalue="JUnit.All in streamdemo" />
  577. </list>
  578. <recent_temporary>
  579. <list>
  580. <item itemvalue="JUnit.All in streamdemo" />
  581. <item itemvalue="JUnit.com.zipcodewilmington.streams in streamdemo" />
  582. <item itemvalue="JUnit.TestConversionAgent.testCount" />
  583. <item itemvalue="JUnit.TestConversionAgent" />
  584. <item itemvalue="JUnit.TestConversionAgent.testToList" />
  585. </list>
  586. </recent_temporary>
  587. </component>
  588. <component name="SvnConfiguration">
  589. <configuration />
  590. </component>
  591. <component name="TaskManager">
  592. <task active="true" id="Default" summary="Default task">
  593. <changelist id="30b7e4a0-b899-49c3-865c-0311dfadae62" name="Default" comment="" />
  594. <created>1493756132542</created>
  595. <option name="number" value="Default" />
  596. <option name="presentableId" value="Default" />
  597. <updated>1493756132542</updated>
  598. <workItem from="1542493051522" duration="17485000" />
  599. </task>
  600. <servers />
  601. </component>
  602. <component name="TestHistory">
  603. <history-entry file="TestConversionAgent - 2018.11.18 at 16h 57m 17s.xml">
  604. <configuration name="TestConversionAgent" configurationId="JUnit" />
  605. </history-entry>
  606. <history-entry file="TestConversionAgent - 2018.11.18 at 16h 57m 27s.xml">
  607. <configuration name="TestConversionAgent" configurationId="JUnit" />
  608. </history-entry>
  609. <history-entry file="TestConversionAgent_testCount - 2018.11.18 at 16h 57m 45s.xml">
  610. <configuration name="TestConversionAgent.testCount" configurationId="JUnit" />
  611. </history-entry>
  612. <history-entry file="TestConversionAgent_testCount - 2018.11.18 at 16h 58m 16s.xml">
  613. <configuration name="TestConversionAgent.testCount" configurationId="JUnit" />
  614. </history-entry>
  615. <history-entry file="com_zipcodewilmington_streams_in_streamdemo - 2018.11.18 at 16h 58m 55s.xml">
  616. <configuration name="com.zipcodewilmington.streams in streamdemo" configurationId="JUnit" />
  617. </history-entry>
  618. <history-entry file="com_zipcodewilmington_streams_in_streamdemo - 2018.11.18 at 17h 02m 25s.xml">
  619. <configuration name="com.zipcodewilmington.streams in streamdemo" configurationId="JUnit" />
  620. </history-entry>
  621. <history-entry file="All_in_streamdemo - 2018.11.18 at 17h 32m 12s.xml">
  622. <configuration name="All in streamdemo" configurationId="JUnit" />
  623. </history-entry>
  624. <history-entry file="All_in_streamdemo - 2018.11.18 at 17h 33m 33s.xml">
  625. <configuration name="All in streamdemo" configurationId="JUnit" />
  626. </history-entry>
  627. <history-entry file="All_in_streamdemo - 2018.11.18 at 17h 34m 43s.xml">
  628. <configuration name="All in streamdemo" configurationId="JUnit" />
  629. </history-entry>
  630. <history-entry file="All_in_streamdemo - 2018.11.18 at 18h 26m 08s.xml">
  631. <configuration name="All in streamdemo" configurationId="JUnit" />
  632. </history-entry>
  633. </component>
  634. <component name="TimeTrackingManager">
  635. <option name="totallyTimeSpent" value="17485000" />
  636. </component>
  637. <component name="TodoView">
  638. <todo-panel id="selected-file">
  639. <is-autoscroll-to-source value="true" />
  640. </todo-panel>
  641. <todo-panel id="all">
  642. <are-packages-shown value="true" />
  643. <is-autoscroll-to-source value="true" />
  644. </todo-panel>
  645. </component>
  646. <component name="ToolWindowManager">
  647. <frame x="0" y="0" width="1280" height="800" extended-state="0" />
  648. <editor active="true" />
  649. <layout>
  650. <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.21163167" />
  651. <window_info id="Structure" order="1" weight="0.25" />
  652. <window_info id="Designer" order="2" />
  653. <window_info id="Nl-Palette" order="3" />
  654. <window_info id="Favorites" order="4" side_tool="true" />
  655. <window_info id="Image Layers" order="5" />
  656. <window_info id="Capture Tool" order="6" />
  657. <window_info id="UI Designer" order="7" />
  658. <window_info anchor="bottom" id="Database Changes" show_stripe_button="false" />
  659. <window_info anchor="bottom" id="Message" order="0" />
  660. <window_info anchor="bottom" id="Find" order="1" weight="0.3298647" />
  661. <window_info active="true" anchor="bottom" id="Run" order="2" visible="true" weight="0.43150684" />
  662. <window_info anchor="bottom" id="Debug" order="3" weight="0.39958376" />
  663. <window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
  664. <window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
  665. <window_info anchor="bottom" id="TODO" order="6" weight="0.3277849" />
  666. <window_info anchor="bottom" id="Version Control" order="7" />
  667. <window_info anchor="bottom" id="Terminal" order="8" weight="0.264308" />
  668. <window_info anchor="bottom" id="Event Log" order="9" side_tool="true" />
  669. <window_info anchor="bottom" id="Messages" order="10" weight="0.32778355" />
  670. <window_info anchor="right" id="Database" />
  671. <window_info anchor="right" id="Commander" order="0" weight="0.4" />
  672. <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
  673. <window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
  674. <window_info anchor="right" id="Palette" order="3" />
  675. <window_info anchor="right" id="Capture Analysis" order="4" />
  676. <window_info anchor="right" id="Theme Preview" order="5" />
  677. <window_info anchor="right" id="Properties" order="6" />
  678. <window_info anchor="right" id="Palette&#9;" order="7" />
  679. <window_info anchor="right" id="Maven Projects" order="8" />
  680. </layout>
  681. <layout-to-restore>
  682. <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.13951011" />
  683. <window_info id="Structure" order="1" weight="0.25" />
  684. <window_info id="Designer" order="2" />
  685. <window_info id="Nl-Palette" order="3" />
  686. <window_info id="Favorites" order="4" side_tool="true" />
  687. <window_info id="Image Layers" order="5" />
  688. <window_info id="Capture Tool" order="6" />
  689. <window_info id="UI Designer" order="7" />
  690. <window_info anchor="bottom" id="Database Changes" order="0" show_stripe_button="false" />
  691. <window_info anchor="bottom" id="Message" order="1" />
  692. <window_info anchor="bottom" id="Find" order="2" weight="0.3298647" />
  693. <window_info active="true" anchor="bottom" id="Run" order="3" visible="true" weight="0.31188118" />
  694. <window_info anchor="bottom" id="Debug" order="4" weight="0.39958376" />
  695. <window_info anchor="bottom" id="Cvs" order="5" weight="0.25" />
  696. <window_info anchor="bottom" id="Inspection" order="6" weight="0.4" />
  697. <window_info anchor="bottom" id="TODO" order="7" weight="0.3277849" />
  698. <window_info anchor="bottom" id="Version Control" order="8" />
  699. <window_info anchor="bottom" id="Terminal" order="9" weight="0.264308" />
  700. <window_info anchor="bottom" id="Event Log" order="10" side_tool="true" />
  701. <window_info anchor="bottom" id="Messages" order="11" weight="0.32778355" />
  702. <window_info anchor="right" id="Database" order="0" />
  703. <window_info anchor="right" id="Commander" order="1" weight="0.4" />
  704. <window_info anchor="right" id="Ant Build" order="2" weight="0.25" />
  705. <window_info anchor="right" content_ui="combo" id="Hierarchy" order="3" weight="0.25" />
  706. <window_info anchor="right" id="Palette" order="4" />
  707. <window_info anchor="right" id="Capture Analysis" order="5" />
  708. <window_info anchor="right" id="Theme Preview" order="6" />
  709. <window_info anchor="right" id="Properties" order="7" />
  710. <window_info anchor="right" id="Palette&#9;" order="8" />
  711. <window_info anchor="right" id="Maven Projects" order="9" />
  712. </layout-to-restore>
  713. </component>
  714. <component name="TypeScriptGeneratedFilesManager">
  715. <option name="version" value="1" />
  716. </component>
  717. <component name="VcsContentAnnotationSettings">
  718. <option name="myLimit" value="2678400000" />
  719. </component>
  720. <component name="antWorkspaceConfiguration">
  721. <option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
  722. <option name="FILTER_TARGETS" value="false" />
  723. </component>
  724. <component name="editorHistoryManager">
  725. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/AbstractCollection.java" />
  726. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcode/LoopMethods.java" />
  727. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcode/ArrayLoopMethods.java" />
  728. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcode/ArrayLoopMethodsTest.java" />
  729. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/tools/StringFactory.java" />
  730. <entry file="jar://$MAVEN_REPOSITORY$/junit/junit/4.12/junit-4.12.jar!/org/junit/Assert.class">
  731. <provider selected="true" editor-type-id="text-editor">
  732. <state relative-caret-position="361">
  733. <caret line="38" column="39" lean-forward="true" selection-start-line="38" selection-start-column="39" selection-end-line="38" selection-end-column="39" />
  734. </state>
  735. </provider>
  736. </entry>
  737. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/Arrays.java" />
  738. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/lambdas/Exercises.java" />
  739. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/stream/Stream.java" />
  740. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/HashMap.java" />
  741. <entry file="file://$PROJECT_DIR$/target/index.html">
  742. <provider selected="true" editor-type-id="text-editor" />
  743. </entry>
  744. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/time/LocalDate.java" />
  745. <entry file="file://$PROJECT_DIR$/target/global.leonlog.1">
  746. <provider selected="true" editor-type-id="LargeFileEditor">
  747. <state relative-caret-position="146">
  748. <caret line="10" column="90" lean-forward="true" selection-start-line="10" selection-start-column="90" selection-end-line="10" selection-end-column="90" />
  749. </state>
  750. </provider>
  751. </entry>
  752. <entry file="file://$PROJECT_DIR$/Test Results - TestSuiteFullRegression.html" />
  753. <entry file="file://$PROJECT_DIR$/target/global.leonlog">
  754. <provider selected="true" editor-type-id="LargeFileEditor">
  755. <state relative-caret-position="-90">
  756. <caret line="2" lean-forward="true" selection-start-line="2" selection-end-line="2" />
  757. </state>
  758. </provider>
  759. <provider editor-type-id="text-editor" />
  760. </entry>
  761. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWorld.java" />
  762. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouseWarehouse.java" />
  763. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/src.zip!/java/util/function/Predicate.java" />
  764. <entry file="file://$PROJECT_DIR$/streamdemo.iml">
  765. <provider selected="true" editor-type-id="text-editor" />
  766. </entry>
  767. <entry file="file://$PROJECT_DIR$/.gitignore">
  768. <provider selected="true" editor-type-id="text-editor">
  769. <state relative-caret-position="15">
  770. <caret line="1" lean-forward="true" selection-start-line="1" selection-end-line="1" />
  771. </state>
  772. </provider>
  773. </entry>
  774. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/StringUtils.java">
  775. <provider selected="true" editor-type-id="text-editor">
  776. <state relative-caret-position="60">
  777. <caret line="4" column="45" selection-start-line="4" selection-end-line="5" />
  778. </state>
  779. </provider>
  780. </entry>
  781. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/ReflectionUtils.java">
  782. <provider selected="true" editor-type-id="text-editor">
  783. <state relative-caret-position="270">
  784. <caret line="23" column="61" lean-forward="true" selection-start-line="23" selection-start-column="61" selection-end-line="23" selection-end-column="61" />
  785. </state>
  786. </provider>
  787. </entry>
  788. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/DateUtils.java">
  789. <provider selected="true" editor-type-id="text-editor">
  790. <state relative-caret-position="840">
  791. <caret line="57" column="41" selection-start-line="57" selection-start-column="41" selection-end-line="57" selection-end-column="41" />
  792. </state>
  793. </provider>
  794. </entry>
  795. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterList.java">
  796. <provider selected="true" editor-type-id="text-editor">
  797. <state relative-caret-position="90">
  798. <caret line="6" column="69" selection-start-line="6" selection-start-column="69" selection-end-line="6" selection-end-column="69" />
  799. </state>
  800. </provider>
  801. </entry>
  802. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestSuiteAnthropoidRegression.java">
  803. <provider selected="true" editor-type-id="text-editor">
  804. <state relative-caret-position="315">
  805. <caret line="21" lean-forward="true" selection-start-line="21" selection-end-line="21" />
  806. </state>
  807. </provider>
  808. </entry>
  809. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerWarehouse.java">
  810. <provider selected="true" editor-type-id="text-editor">
  811. <state relative-caret-position="90">
  812. <caret line="7" column="69" selection-start-line="7" selection-start-column="69" selection-end-line="7" selection-end-column="69" />
  813. </state>
  814. </provider>
  815. </entry>
  816. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamMap.java" />
  817. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/logging/LoggerHandler.java">
  818. <provider selected="true" editor-type-id="text-editor">
  819. <state relative-caret-position="105">
  820. <caret line="13" column="69" selection-start-line="13" selection-start-column="69" selection-end-line="13" selection-end-column="69" />
  821. </state>
  822. </provider>
  823. </entry>
  824. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestSuiteFullRegression.java">
  825. <provider selected="true" editor-type-id="text-editor">
  826. <state relative-caret-position="120">
  827. <caret line="12" selection-start-line="12" selection-end-line="12" />
  828. </state>
  829. </provider>
  830. </entry>
  831. <entry file="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_191.jdk/Contents/Home/src.zip!/java/util/ArrayList.java">
  832. <provider selected="true" editor-type-id="text-editor">
  833. <state relative-caret-position="129">
  834. <caret line="150" column="11" selection-start-line="150" selection-start-column="11" selection-end-line="150" selection-end-column="11" />
  835. </state>
  836. </provider>
  837. </entry>
  838. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestConstants.java">
  839. <provider selected="true" editor-type-id="text-editor">
  840. <state relative-caret-position="105">
  841. <caret line="7" column="26" selection-start-line="7" selection-start-column="26" selection-end-line="7" selection-end-column="26" />
  842. </state>
  843. </provider>
  844. </entry>
  845. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPerson.java">
  846. <provider selected="true" editor-type-id="text-editor">
  847. <state relative-caret-position="300">
  848. <caret line="25" column="12" selection-start-line="25" selection-start-column="12" selection-end-line="25" selection-end-column="12" />
  849. </state>
  850. </provider>
  851. </entry>
  852. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/Person.java">
  853. <provider selected="true" editor-type-id="text-editor">
  854. <state relative-caret-position="247">
  855. <caret line="51" column="5" selection-start-line="51" selection-start-column="5" selection-end-line="51" selection-end-column="5" />
  856. </state>
  857. </provider>
  858. </entry>
  859. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamMap.java">
  860. <provider selected="true" editor-type-id="text-editor">
  861. <state relative-caret-position="326">
  862. <caret line="38" column="1" selection-start-line="38" selection-start-column="1" selection-end-line="38" selection-end-column="1" />
  863. <folding>
  864. <element signature="e#550#551#0" expanded="true" />
  865. <element signature="e#577#578#0" expanded="true" />
  866. <element signature="e#802#803#0" expanded="true" />
  867. <element signature="e#829#830#0" expanded="true" />
  868. <element signature="e#1054#1055#0" expanded="true" />
  869. <element signature="e#1081#1082#0" expanded="true" />
  870. </folding>
  871. </state>
  872. </provider>
  873. </entry>
  874. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/tools/RandomUtils.java">
  875. <provider selected="true" editor-type-id="text-editor">
  876. <state relative-caret-position="480">
  877. <caret line="37" column="26" selection-start-line="37" selection-start-column="26" selection-end-line="37" selection-end-column="26" />
  878. <folding>
  879. <element signature="e#1365#1366#0" expanded="true" />
  880. <element signature="e#1420#1421#0" expanded="true" />
  881. </folding>
  882. </state>
  883. </provider>
  884. </entry>
  885. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonFactory.java">
  886. <provider selected="true" editor-type-id="text-editor">
  887. <state relative-caret-position="330">
  888. <caret line="32" selection-start-line="32" selection-end-line="33" />
  889. <folding>
  890. <element signature="e#1052#1053#0" expanded="true" />
  891. </folding>
  892. </state>
  893. </provider>
  894. </entry>
  895. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/anthropoid/TestPersonWarehouse.java">
  896. <provider selected="true" editor-type-id="text-editor">
  897. <state relative-caret-position="123">
  898. <caret line="72" column="70" selection-start-line="72" selection-end-line="73" />
  899. <folding>
  900. <element signature="imports" expanded="true" />
  901. </folding>
  902. </state>
  903. </provider>
  904. </entry>
  905. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ConversionAgent.java">
  906. <provider selected="true" editor-type-id="text-editor">
  907. <state relative-caret-position="18">
  908. <caret line="14" column="1" selection-start-line="14" selection-start-column="1" selection-end-line="14" selection-end-column="69" />
  909. </state>
  910. </provider>
  911. </entry>
  912. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ArrayConverter.java">
  913. <provider selected="true" editor-type-id="text-editor">
  914. <state relative-caret-position="360">
  915. <caret line="31" column="33" selection-start-line="31" selection-start-column="33" selection-end-line="31" selection-end-column="33" />
  916. <folding>
  917. <element signature="e#750#751#0" expanded="true" />
  918. <element signature="e#801#802#0" expanded="true" />
  919. <element signature="e#859#860#0" expanded="true" />
  920. <element signature="e#889#890#0" expanded="true" />
  921. </folding>
  922. </state>
  923. </provider>
  924. </entry>
  925. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonWarehouse.java">
  926. <provider selected="true" editor-type-id="text-editor">
  927. <state relative-caret-position="855">
  928. <caret line="69" column="97" selection-start-line="69" selection-start-column="97" selection-end-line="69" selection-end-column="97" />
  929. <folding>
  930. <element signature="e#2429#2430#0" expanded="true" />
  931. <element signature="e#2456#2457#0" expanded="true" />
  932. <element signature="e#2570#2571#0" expanded="true" />
  933. <element signature="e#2597#2598#0" expanded="true" />
  934. <element signature="e#3064#3065#0" expanded="true" />
  935. <element signature="e#3152#3153#0" expanded="true" />
  936. <element signature="e#2872#2873#0" expanded="true" />
  937. <element signature="e#2901#2902#0" expanded="true" />
  938. </folding>
  939. </state>
  940. </provider>
  941. </entry>
  942. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/anthropoid/PersonFactory.java">
  943. <provider selected="true" editor-type-id="text-editor">
  944. <state relative-caret-position="596">
  945. <caret line="63" column="70" selection-start-line="63" selection-start-column="70" selection-end-line="63" selection-end-column="70" />
  946. </state>
  947. </provider>
  948. </entry>
  949. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/ListConverter.java">
  950. <provider selected="true" editor-type-id="text-editor">
  951. <state relative-caret-position="390">
  952. <caret line="34" column="31" lean-forward="true" selection-start-line="34" selection-start-column="31" selection-end-line="34" selection-end-column="31" />
  953. <folding>
  954. <element signature="e#995#996#0" expanded="true" />
  955. </folding>
  956. </state>
  957. </provider>
  958. </entry>
  959. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/PersonConversionAgent.java">
  960. <provider selected="true" editor-type-id="text-editor">
  961. <state relative-caret-position="120">
  962. <caret line="8" column="69" selection-start-line="8" selection-start-column="69" selection-end-line="8" selection-end-column="69" />
  963. </state>
  964. </provider>
  965. </entry>
  966. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterArray.java">
  967. <provider selected="true" editor-type-id="text-editor">
  968. <state relative-caret-position="90">
  969. <caret line="6" column="70" selection-start-line="6" selection-start-column="70" selection-end-line="6" selection-end-column="70" />
  970. </state>
  971. </provider>
  972. </entry>
  973. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestSuiteConversionRegression.java">
  974. <provider selected="true" editor-type-id="text-editor">
  975. <state relative-caret-position="225">
  976. <caret line="16" column="13" selection-start-line="16" selection-start-column="13" selection-end-line="16" selection-end-column="13" />
  977. </state>
  978. </provider>
  979. </entry>
  980. <entry file="file://$PROJECT_DIR$/README.md">
  981. <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
  982. <state split_layout="SPLIT">
  983. <first_editor />
  984. <second_editor />
  985. </state>
  986. </provider>
  987. </entry>
  988. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/TestStreamFilter.java">
  989. <provider selected="true" editor-type-id="text-editor">
  990. <state relative-caret-position="199">
  991. <caret line="26" lean-forward="true" selection-start-line="26" selection-end-line="26" />
  992. <folding>
  993. <element signature="e#807#808#0" expanded="true" />
  994. <element signature="e#863#864#0" expanded="true" />
  995. <element signature="e#928#929#0" expanded="true" />
  996. <element signature="e#987#988#0" expanded="true" />
  997. </folding>
  998. </state>
  999. </provider>
  1000. </entry>
  1001. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConversionAgent.java">
  1002. <provider selected="true" editor-type-id="text-editor">
  1003. <state relative-caret-position="795">
  1004. <caret line="67" column="16" selection-start-line="67" selection-start-column="16" selection-end-line="67" selection-end-column="16" />
  1005. </state>
  1006. </provider>
  1007. </entry>
  1008. <entry file="file://$PROJECT_DIR$/src/test/java/com/zipcodewilmington/streams/conversions/TestConverterStream.java">
  1009. <provider selected="true" editor-type-id="text-editor">
  1010. <state relative-caret-position="90">
  1011. <caret line="6" column="69" selection-start-line="6" selection-start-column="69" selection-end-line="6" selection-end-column="69" />
  1012. </state>
  1013. </provider>
  1014. </entry>
  1015. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/conversions/StreamConverter.java">
  1016. <provider selected="true" editor-type-id="text-editor">
  1017. <state relative-caret-position="450">
  1018. <caret line="37" column="62" selection-start-line="37" selection-start-column="62" selection-end-line="37" selection-end-column="62" />
  1019. <folding>
  1020. <element signature="e#892#893#0" expanded="true" />
  1021. <element signature="e#964#965#0" expanded="true" />
  1022. <element signature="e#1104#1105#0" expanded="true" />
  1023. <element signature="e#1171#1172#0" expanded="true" />
  1024. </folding>
  1025. </state>
  1026. </provider>
  1027. </entry>
  1028. <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/streams/StreamFilter.java">
  1029. <provider selected="true" editor-type-id="text-editor">
  1030. <state relative-caret-position="168">
  1031. <caret line="63" column="57" selection-start-line="63" selection-start-column="57" selection-end-line="63" selection-end-column="57" />
  1032. <folding>
  1033. <element signature="e#1177#1178#0" expanded="true" />
  1034. <element signature="e#1219#1220#0" expanded="true" />
  1035. <element signature="e#2593#2594#0" expanded="true" />
  1036. <element signature="e#2620#2621#0" expanded="true" />
  1037. <element signature="e#2813#2814#0" expanded="true" />
  1038. <element signature="e#2840#2841#0" expanded="true" />
  1039. </folding>
  1040. </state>
  1041. </provider>
  1042. </entry>
  1043. </component>
  1044. <component name="masterDetails">
  1045. <states>
  1046. <state key="ArtifactsStructureConfigurable.UI">
  1047. <settings>
  1048. <artifact-editor />
  1049. <splitter-proportions>
  1050. <option name="proportions">
  1051. <list>
  1052. <option value="0.2" />
  1053. </list>
  1054. </option>
  1055. </splitter-proportions>
  1056. </settings>
  1057. </state>
  1058. <state key="FacetStructureConfigurable.UI">
  1059. <settings>
  1060. <last-edited>No facets are configured</last-edited>
  1061. <splitter-proportions>
  1062. <option name="proportions">
  1063. <list>
  1064. <option value="0.2" />
  1065. </list>
  1066. </option>
  1067. </splitter-proportions>
  1068. </settings>
  1069. </state>
  1070. <state key="GlobalLibrariesConfigurable.UI">
  1071. <settings>
  1072. <splitter-proportions>
  1073. <option name="proportions">
  1074. <list>
  1075. <option value="0.2" />
  1076. </list>
  1077. </option>
  1078. </splitter-proportions>
  1079. </settings>
  1080. </state>
  1081. <state key="JdkListConfigurable.UI">
  1082. <settings>
  1083. <last-edited>1.8</last-edited>
  1084. <splitter-proportions>
  1085. <option name="proportions">
  1086. <list>
  1087. <option value="0.2" />
  1088. </list>
  1089. </option>
  1090. </splitter-proportions>
  1091. </settings>
  1092. </state>
  1093. <state key="ModuleStructureConfigurable.UI">
  1094. <settings>
  1095. <last-edited>looptest</last-edited>
  1096. <splitter-proportions>
  1097. <option name="proportions">
  1098. <list>
  1099. <option value="0.2" />
  1100. <option value="0.6" />
  1101. </list>
  1102. </option>
  1103. </splitter-proportions>
  1104. </settings>
  1105. </state>
  1106. <state key="ProjectLibrariesConfigurable.UI">
  1107. <settings>
  1108. <last-edited>Maven: junit:junit:4.12</last-edited>
  1109. <splitter-proportions>
  1110. <option name="proportions">
  1111. <list>
  1112. <option value="0.2" />
  1113. </list>
  1114. </option>
  1115. </splitter-proportions>
  1116. </settings>
  1117. </state>
  1118. <state key="ScopeChooserConfigurable.UI">
  1119. <settings>
  1120. <splitter-proportions>
  1121. <option name="proportions">
  1122. <list>
  1123. <option value="0.2" />
  1124. </list>
  1125. </option>
  1126. </splitter-proportions>
  1127. </settings>
  1128. </state>
  1129. </states>
  1130. </component>
  1131. </project>