pchai7 34d307cecf InProgress 4 years ago
.idea InProgress 4 years ago
src InProgress 4 years ago
target changes to source file 4 years ago
.DS_Store InProgress 4 years ago
.gitignore changes to source file 4 years ago
README.md changes 4 years ago
looptest.iml InProgress 4 years ago
pom.xml changes to source file 4 years ago
streamdemo.iml changes to source file 4 years ago

README.md

ZCW-MicroLabs-Streams-And-Lambdas:
The Person Factory

  • Purpose - to demonstrate stream usage...

Part 1

  • Note - The Person class is a representation of a respective Person object.
  • Objective - to implement the following classes:-
    • PersonFactory - generates Person objects.
    • PersonWarehouse - stores, retrieves, and filters Person objects.
    • StreamFilter - demonstrates filtering and converting between collection-types
    • StreamMap - demonstrates mapping and flatmapping

Part 2

  • Objective - to implement the following classes:-

    • ArrayConverter - demonstrates the conversion from SomeType[] to
      • list representation: List<SomeType>
      • stream representation: Stream<SomeType>
    • ListConverter - demonstrates the conversion from List<SomeType> to
      • array representation: SomeType[]
      • stream representation: Stream<SomeType>
    • StreamConverter - demonstrates the conversion from Stream<SomeType> to

      • array representation: SomeType[]
      • list representation: List<SomeType>

        streams-and-lambdas