java_8_recipes
Source code for Modern Java Recipes book from O'Reilly
File Explorer
- settings.local.json
- gradle.yml
- dependabot.yml
- gradle-wrapper.jar
- gradle-wrapper.properties
- libs.versions.toml
- LongStreamBenchmark.java
- ParallelStreamBenchmark.java
- CustomPoolBenchmark.java
- DoublingDemo.java
- Actor.java
- AddCollectionToMap.java
- Book.java
- CollectorsDemo.java
- ImmutableCollections.java
- Movie.java
- MysteryMen.java
- AllOfDemo.java
- AwaitQuiesence.java
- CommonPoolSize.java
- CompletableFutureDemos.java
- FutureDemo.java
- ParallelDemo.java
- Product.java
- SequentialToParallel.java
- Timer.java
- AddingAndSubtracting.java
- Adjusters.java
- AntarcticaTimeZones.java
- ConvertDate.java
- CTtoIndia.java
- DateTimeFormatterDemo.java
- DaysToElection.java
- FunnyOffsets.java
- JavaTimeDemos.java
- MonthMethods.java
- NowFactoryMethod.java
- NumberOfTimeZones.java
- OfFactoryMethod.java
- PaydayAdjuster.java
- PirateQuery.java
- RegionIdsByOffset.java
- Timer.java
- Company.java
- CompanyEmployee.java
- DefaultMapMethods.java
- DefaultMethodsDemo.java
- Employee.java
- ForeachDemo.java
- StaticMethodsDemo.java
- FileList.java
- Jumble.java
- ProcessDictionary.java
- SearchForFiles.java
- WalkTheTree.java
- ForEachDemo.java
- ImplementConsumer.java
- ImplementFunction.java
- ImplementPredicate.java
- ImplementSupplier.java
- Demo.java
- Employee.java
- ProcessColors.java
- ProcessNumbers.java
- SafeVarargsDemo.java
- MyUI.java
- Algorithms.java
- ClosureVariables.java
- CompositionDemo.java
- ConsumerDemo.java
- ExceptionHandling.java
- FunctionWithException.java
- LambdasDemo.java
- MethodReferencesDemo.java
- MyFilter.java
- RunnableDemo.java
- UseFilenameFilter.java
- Customer.java
- FlatMapDemo.java
- MapExamples.java
- Order.java
- Person.java
- UsePerson.java
- WordMap.java
- ObjectsDemo.java
- Company.java
- Department.java
- Employee.java
- HR.java
- Manager.java
- OptionalDemo.java
- OptionalMap.java
- UseDepartment.java
- UseOptionalMap.java
- LoopsSortsAndIfs.java
- Golfer.java
- SortGolfers.java
- SortingDemo.java
- SortingMaps.java
- Book.java
- BoxedStreams.java
- ConcatStreams.java
- CountingElements.java
- CreatingStreams.java
- Employee.java
- FindFirstAny.java
- GroupingDemo.java
- LazyStreams.java
- MaxAndMin.java
- PalindromeEvaluator.java
- PartitionDemo.java
- PeekDemo.java
- ProcessDictionary.java
- RandomStreams.java
- ReduceDemo.java
- Stats.java
- StreamsDemo.java
- StreamToIntStream.java
- SumStringLengths.java
- Team.java
- UsingCollect.java
- Task.java
- UseTasks.java
- DeferredExecution.java
- IterableDemo.java
- IteratingOverAMap.java
- Iteration.java
- MyChildInterface.java
- MyInterface.java
- PalindromeChecker.java
- Primes.java
- PrimesDemo.java
- Printing.java
- ReduceProduct.java
- StringLengthDemo.java
- SumDoubles.java
- Summarizing.java
- UseFilenameFilter.java
- connectives
- propernames
- README
- web2
- web2a
- words
- function_package.txt
- mlb_team_salaries_2017.txt
- simple_file.txt
- CollectorsDemoTest.java
- ImmutableCollectionsTest.java
- AwaitQuiesenceTest.java
- CompletableFutureDemosTest.java
- CompletableFutureTests.java
- SequentialToParallelTest.java
- AddingAndSubtractingTest.java
- ConvertDateTest.java
- PaydayAdjusterTest.java
- RegionIdsByOffsetTest.java
- TemporalAdjusterTests.java
- TemporalQueriesTests.java
- CompanyEmployeeTest.java
- JumbleTest.java
- ProcessDictionaryTest.java
- ImplementPredicateTest.java
- ProcessColorsTest.java
- AlgorithmsTest.java
- CompositionDemoTest.java
- SupplierTest.java
- PersonConstructorTest.java
- UsePersonTest.java
- WordMapTest.java
- ObjectsDemoTest.java
- HRTest.java
- OptionalDemoTest.java
- SortingDemoTest.java
- SortingMapsTest.java
- ConcatStreamsTest.java
- PalindromeEvaluatorTest.java
- PeekDemoTest.java
- StreamsDemoTest.java
- PalindromeCheckerTest.java
- PrimesTest.java
- .gitignore
- build.gradle
- CLAUDE.md
- gradlew
- gradlew.bat
- README.md
- settings.gradle
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Link
Example
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
// repository documentation
Was this content helpful?
(0 ratings)
