- Notifications
You must be signed in to change notification settings - Fork1
rohitchavan-git/Learn-Java-8-Stream
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
In this Repository we are giving you the best of best the implementations of streams in java 8, we are trying to show you how stream is similar to MySQL operation
- Learn Java 8-Stream
- Java 8 Workshop
- Real Time Use Cases java 11
- Optional In Use
- Java 8 coding interview Preparation
- Java 8 funcitonal programming to imperative style
- Design Pattern Using java 8
- lambda in java 8
- Functional Interface
- Predicate
- Consumer
- Function
- Comparetor
- Comparable and more
- Streams
- streams
- map
- filter
- sotred
- distinct
- flatMap
- IntStream.Of
- IntStream.range
- anyMatch
- allMatch
- noneMatch
- sort
- min
- max
- reduce
- count
- forEach
- IntStream.rangeClosed
- mapToObj ,mapToInt and more
- Logically We are comparing all Stream operations to MYSQL Operations
selecttid from transactions where city="hyd" (Logically Similar To)allTransaction.stream() .filter(p->p.getCity.equals("hyd")) .map(Transactions::getTid).collect(Collectors.toList());
- Find all transactions in the year 2011 and sort them by value (small to high).
- What are all the unique cities where the traders work?
- Find all traders from Nanded and sort them by name.
- Return a string of all traders’ names sorted alphabetically.
- Are any traders based in Osmanabad?
- Print all transactions’ values from the traders living in Nanded.
- What’s the highest value of all the transactions?
- Find the transaction with the smallest value.
About
In this Respository we can find out the best of the implemations of streams in java 8 , we are tries to show you how stream is similar to mysql types of operation
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
