CHU1TA26 947cf05db6 done 5 anos atrás
.idea done 5 anos atrás
src done 5 anos atrás
target done 5 anos atrás
.gitignore update 7 anos atrás
README.md Update README.md 7 anos atrás
looptest.iml done 5 anos atrás
pom.xml done 5 anos atrás
streamdemo.iml done 5 anos atrás

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>