Eric Foster 677f04d0aa workspacexml il y a 6 ans
.idea workspacexml il y a 6 ans
src finished lab but one test won't pass il y a 6 ans
target finished lab but one test won't pass il y a 6 ans
.gitignore update il y a 7 ans
README.md Update README.md il y a 7 ans
pom.xml finished lab but one test won't pass il y a 6 ans
streamdemo.iml update il y a 7 ans

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>