{"id":30105823,"url":"https://github.com/asrieldreemurrgm/java_streams_study","last_synced_at":"2026-07-15T20:01:41.071Z","repository":{"id":299337621,"uuid":"1002690737","full_name":"AsrielDreemurrGM/Java_Streams_Study","owner":"AsrielDreemurrGM","description":"Study repository focused on exploring Java Streams, showcasing various intermediate and terminal operations with practical examples.","archived":false,"fork":false,"pushed_at":"2025-06-19T12:53:05.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-30T03:08:03.456Z","etag":null,"topics":["collect","foreach","functional-programming","intermediate-operations","java","java-8","lambda-expressions","optional","spring-tool-suite4","stream-api","streams","terminal-operations"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AsrielDreemurrGM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-16T01:42:37.000Z","updated_at":"2025-06-19T12:53:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"8f667056-bb3d-4394-8d59-fd0aa674fe08","html_url":"https://github.com/AsrielDreemurrGM/Java_Streams_Study","commit_stats":null,"previous_names":["asrieldreemurrgm/java_streams_study"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AsrielDreemurrGM/Java_Streams_Study","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsrielDreemurrGM%2FJava_Streams_Study","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsrielDreemurrGM%2FJava_Streams_Study/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsrielDreemurrGM%2FJava_Streams_Study/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsrielDreemurrGM%2FJava_Streams_Study/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AsrielDreemurrGM","download_url":"https://codeload.github.com/AsrielDreemurrGM/Java_Streams_Study/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsrielDreemurrGM%2FJava_Streams_Study/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35519051,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-15T02:00:06.706Z","response_time":131,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["collect","foreach","functional-programming","intermediate-operations","java","java-8","lambda-expressions","optional","spring-tool-suite4","stream-api","streams","terminal-operations"],"created_at":"2025-08-10T00:19:39.579Z","updated_at":"2026-07-15T20:01:41.063Z","avatar_url":"https://github.com/AsrielDreemurrGM.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003eJava Streams Study\u003c/h1\u003e\n\u003cp\u003e\n  Study repository focused on exploring \u003cstrong\u003eJava Streams\u003c/strong\u003e, showcasing a wide range of \u003cstrong\u003eintermediate\u003c/strong\u003e and \u003cstrong\u003eterminal operations\u003c/strong\u003e\n  using clear, commented examples for learning purposes.\n\u003c/p\u003e\n\u003ch2\u003e📌 Features\u003c/h2\u003e\n\u003cul\u003e\n  \u003cli\u003eCreating streams from collections, arrays, sets, and maps;\u003c/li\u003e\n  \u003cli\u003eFilter, map, distinct, sorted, limit, and forEach operations with Lambdas;\u003c/li\u003e\n  \u003cli\u003eCounting and validating elements with \u003ccode\u003ecount()\u003c/code\u003e and \u003ccode\u003eallMatch()\u003c/code\u003e;\u003c/li\u003e\n  \u003cli\u003eCollecting stream results into lists, sets, maps, and grouping with \u003ccode\u003eCollectors\u003c/code\u003e;\u003c/li\u003e\n  \u003cli\u003eWorking with \u003ccode\u003eOptional\u003c/code\u003e to find max/min (e.g., oldest and youngest);\u003c/li\u003e\n  \u003cli\u003eFiltering by gender using console input and stream logic.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🗂️ Project Structure\u003c/h2\u003e\n\u003cul\u003e\n  \u003cli\u003e\u003ccode\u003ebr.com.eaugusto\u003c/code\u003e: Contains the shared \u003ccode\u003ePerson.java\u003c/code\u003e class used by most examples, and the \u003ccode\u003eCreatingStreams.java\u003c/code\u003e class for stream creation;\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ebr.com.eaugusto.intermediateoperations\u003c/code\u003e: Filter, Map, Limit, Distinct, Sorted, etc;\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ebr.com.eaugusto.terminaloperations\u003c/code\u003e: forEach, count, allMatch and collectors;\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ebr.com.eaugusto.coursetask\u003c/code\u003e: Exercise involving filtering by gender using input, has its own \u003ccode\u003ePerson.java\u003c/code\u003e class;\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🚀 How to Run\u003c/h2\u003e\n\u003col\u003e\n  \u003cli\u003eClone this repository and open it in your IDE (Spring Tool Suite, Eclipse, IntelliJ);\u003c/li\u003e\n  \u003cli\u003eEach class has a \u003ccode\u003emain\u003c/code\u003e method with examples that can be run directly;\u003c/li\u003e\n  \u003cli\u003eReview the inline comments and Javadocs for detailed explanations of each operation.\u003c/li\u003e\n\u003c/ol\u003e\n\u003ch2\u003e📅 Commit Highlights\u003c/h2\u003e\n\u003ch3\u003eJune 19, 2025\u003c/h3\u003e\n\u003cul\u003e\n  \u003cli\u003eCreated filtering by gender using \u003ccode\u003eFilterByGender\u003c/code\u003e and the new local \u003ccode\u003ePerson\u003c/code\u003e class specific to the new \u003ccode\u003ecoursetask\u003c/code\u003e package.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eJune 18, 2025\u003c/h3\u003e\n\u003cul\u003e\n  \u003cli\u003eAdded optional examples for finding youngest and oldest entries;\u003c/li\u003e\n  \u003cli\u003eRenamed \u003ccode\u003eCollectExample\u003c/code\u003e to \u003ccode\u003eCollectExamples\u003c/code\u003e and added Javadocs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eJune 17, 2025\u003c/h3\u003e\n\u003cul\u003e\n  \u003cli\u003eImplemented various \u003ccode\u003eCollectors\u003c/code\u003e: toList, toSet, toMap, groupingBy, etc.;\u003c/li\u003e\n  \u003cli\u003eExpanded \u003ccode\u003ePerson\u003c/code\u003e and added grouping examples.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eJune 16–15, 2025\u003c/h3\u003e\n\u003cul\u003e\n  \u003cli\u003eCreated classes for: \u003ccode\u003efilter\u003c/code\u003e, \u003ccode\u003emap\u003c/code\u003e, \u003ccode\u003elimit\u003c/code\u003e, \u003ccode\u003edistinct\u003c/code\u003e, \u003ccode\u003esorted\u003c/code\u003e, and \u003ccode\u003eforEach\u003c/code\u003e examples;\u003c/li\u003e\n  \u003cli\u003eBuilt helper methods to populate people and reuse logic.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🎯 Learning Goals\u003c/h2\u003e\n\u003cul\u003e\n  \u003cli\u003eUnderstand how Java Stream API simplifies collection processing;\u003c/li\u003e\n  \u003cli\u003ePractice real-world stream operations with filtering, mapping and aggregation;\u003c/li\u003e\n  \u003cli\u003eApply functional programming concepts like lambdas and method references;\u003c/li\u003e\n  \u003cli\u003eExplore \u003ccode\u003eOptional\u003c/code\u003e handling for safer data retrieval.\u003c/li\u003e\n\u003c/ul\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasrieldreemurrgm%2Fjava_streams_study","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasrieldreemurrgm%2Fjava_streams_study","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasrieldreemurrgm%2Fjava_streams_study/lists"}