MCPcopy Create free account

hub / github.com/JosePaumard/code-one-2019-lambda-stream-collector-lab / types & classes

Types & classes48 in github.com/JosePaumard/code-one-2019-lambda-stream-collector-lab

ClassA_Suppliers
This set of exercises covers the Supplier interface.
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/a_lambdas/A_Suppliers.java:31
ClassA_Suppliers
This set of exercises covers the Supplier interface.
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/A_Suppliers.java:32
ClassActor
src/test/java/org/paumard/codeone2019/F_Challenges/model/Actor.java:21
ClassActorsAndMoviesChallenge
In this challenge, you are going to analyze a database of movies. Each movies has several properties: a release year, a title, and the set of the acto
src/solutions/java/org/paumard/solutions/codeone2019/F_Challenges/ActorsAndMoviesChallenge.java:49
ClassActorsAndMoviesChallenge
In this challenge, you are going to analyze a database of movies. Each movies has several properties: a release year, a title, and the set of the acto
src/test/java/org/paumard/codeone2019/F_Challenges/ActorsAndMoviesChallenge.java:45
ClassB_Consumers
This set of exercises covers the Consumer and BiConsumer interfaces. Some exercises also cover consumer chaining.
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/a_lambdas/B_Consumers.java:32
ClassB_Consumers
This set of exercises covers the Consumer and BiConsumer interfaces. Some exercises also cover consumer chaining.
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/B_Consumers.java:33
ClassC_Predicates
This set of exercises covers the Predicate interface. Some exercises also cover predicate chaining.
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/a_lambdas/C_Predicates.java:31
ClassC_Predicates
This set of exercises covers the Predicate interface. Some exercises also cover predicate chaining.
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/C_Predicates.java:31
ClassCircle
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/model/Circle.java:21
InterfaceCircleFactory
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/a_lambdas/util/CircleFactory.java:27
InterfaceCircleFactory
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/util/CircleFactory.java:24
ClassD_Functions
This set of exercises covers the Function interface. Some exercises also cover function chaining and composition.
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/a_lambdas/D_Functions.java:30
ClassD_Functions
This set of exercises covers the Function interface. Some exercises also cover function chaining and composition.
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/D_Functions.java:31
InterfaceDoubleToIntBiFunction
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/b_comparators/F_Comparators.java:205
InterfaceDoubleToIntBiFunction
src/test/java/org/paumard/codeone2019/A_Lambdas/b_comparators/F_Comparators.java:206
ClassE_Runnables
This set of exercises covers the Runnable interface.
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/a_lambdas/E_Runnables.java:25
ClassE_Runnables
This set of exercises covers the Runnable interface.
src/test/java/org/paumard/codeone2019/A_Lambdas/a_lambdas/E_Runnables.java:26
ClassF_Comparators
This set of exercises covers the Comparator interface. Comparator chaining and factory methods are also covered.The code you need to write uses the fa
src/solutions/java/org/paumard/solutions/codeone2019/A_Lambdas/b_comparators/F_Comparators.java:33
ClassF_Comparators
This set of exercises covers the Comparator interface. Comparator chaining and factory methods are also covered. The code you need to write uses the f
src/test/java/org/paumard/codeone2019/A_Lambdas/b_comparators/F_Comparators.java:33
ClassG_Iterables
This set of exercises covers the default method added to the Iterable interface.
src/solutions/java/org/paumard/solutions/codeone2019/B_Collections/G_Iterables.java:30
ClassG_Iterables
This set of exercises covers the default method added to the Iterable interface.
src/test/java/org/paumard/codeone2019/B_Collections/G_Iterables.java:31
ClassH_Collections
This set of exercises covers the default method added to the Collection interface.
src/solutions/java/org/paumard/solutions/codeone2019/B_Collections/H_Collections.java:30
ClassH_Collections
This set of exercises covers the default method added to the Collection interface.
src/test/java/org/paumard/codeone2019/B_Collections/H_Collections.java:31
ClassI_Lists
This set of exercises covers the default method added to the List interface.
src/solutions/java/org/paumard/solutions/codeone2019/B_Collections/I_Lists.java:31
ClassI_Lists
This set of exercises covers the default method added to the List interface.
src/test/java/org/paumard/codeone2019/B_Collections/I_Lists.java:30
ClassJ_Maps
This set of exercises covers the default method added to the Map interface.
src/solutions/java/org/paumard/solutions/codeone2019/C_Maps/J_Maps.java:28
ClassJ_Maps
This set of exercises covers the default method added to the Map interface.
src/test/java/org/paumard/codeone2019/C_Maps/J_Maps.java:29
ClassK_SimpleStreams
This set of exercises covers simple simpleStream pipelines, including intermediate operations and basic collectors.
src/solutions/java/org/paumard/solutions/codeone2019/D_Streams/K_SimpleStreams.java:34
ClassK_SimpleStreams
This set of exercises covers simple simpleStream pipelines, including intermediate operations and basic collectors.
src/test/java/org/paumard/codeone2019/D_Streams/K_SimpleStreams.java:32
ClassL_HarderStreams
This set of exercises covers harder stream pipelines, including intermediate operations and collectors. <p> Some of these exercises use a BufferedRead
src/solutions/java/org/paumard/solutions/codeone2019/D_Streams/L_HarderStreams.java:46
ClassL_HarderStreams
This set of exercises covers harder stream pipelines, including intermediate operations and collectors. <p> Some of these exercises use a BufferedRead
src/test/java/org/paumard/codeone2019/D_Streams/L_HarderStreams.java:42
ClassLongest
Select the longest words from an input stream. That is, select the words whose lengths are equal to the maximum word length. For this exercise, you mu
src/solutions/java/org/paumard/solutions/codeone2019/D_Streams/N_Challenges.java:232
ClassM_Reductions
This set of exercises covers the reduction step. <p> Some of these exercises use a BufferedReader variable named "reader" that the test has set up for
src/solutions/java/org/paumard/solutions/codeone2019/D_Streams/M_Reductions.java:44
ClassM_Reductions
This set of exercises covers the reduction step. <p> Some of these exercises use a BufferedReader variable named "reader" that the test has set up for
src/test/java/org/paumard/codeone2019/D_Streams/M_Reductions.java:45
ClassMovie
src/test/java/org/paumard/codeone2019/F_Challenges/model/Movie.java:22
ClassN_Challenges
src/solutions/java/org/paumard/solutions/codeone2019/D_Streams/N_Challenges.java:39
ClassN_Challenges
src/test/java/org/paumard/codeone2019/D_Streams/N_Challenges.java:38
ClassO_SimpleCollectors
This set of exercises covers the collect() terminal operation with the basic collectors. The collectors used in this class can be built from the facto
src/solutions/java/org/paumard/solutions/codeone2019/E_Collectors/O_SimpleCollectors.java:34
ClassO_SimpleCollectors
This set of exercises covers the collect() terminal operation with the basic collectors. The collectors used in this class can be built from the facto
src/test/java/org/paumard/codeone2019/E_Collectors/O_SimpleCollectors.java:33
ClassP_HarderCollectors
This set of exercises covers the collect() terminal operation with the complex collectors. <p> Some of these exercises use a BufferedReader variable n
src/solutions/java/org/paumard/solutions/codeone2019/E_Collectors/P_HarderCollectors.java:46
ClassP_HarderCollectors
This set of exercises covers the collect() terminal operation with the complex collectors. <p> Some of these exercises use a BufferedReader variable n
src/test/java/org/paumard/codeone2019/E_Collectors/P_HarderCollectors.java:44
ClassPerson
src/test/java/org/paumard/codeone2019/A_Lambdas/b_comparators/model/Person.java:19
ClassPerson
src/test/java/org/paumard/codeone2019/D_Streams/model/Person.java:21
ClassShakespeareChallenge
Many information are missing on Shakespeare's life, and it is said, even if it cannot be sure, that he was a great Scrabble player. <p/> The goal of t
src/solutions/java/org/paumard/solutions/codeone2019/F_Challenges/ShakespeareChallenge.java:44
ClassShakespeareChallenge
Many information are missing on Shakespeare's life, and it is said, even if it cannot be sure, that he was a great Scrabble player. <p/> The goal of t
src/test/java/org/paumard/codeone2019/F_Challenges/ShakespeareChallenge.java:43
ClassTotalAndDistinct
Count the total number of words and the number of distinct, lower case words in a stream, in one pass. This exercise uses a helper class that defines
src/solutions/java/org/paumard/solutions/codeone2019/D_Streams/N_Challenges.java:80
ClassTotalAndDistinct
Count the total number of words and the number of distinct, lower case words in a stream, in one pass. This exercise uses a helper class that defines
src/test/java/org/paumard/codeone2019/D_Streams/N_Challenges.java:73