SlideShare a Scribd company logo
1 of 10
Download to read offline
make your code easier and faster
New data structures 
● Multimap: one key - several values 
○ HashMultimap - does not allow duplicating key-value pairs 
○ LinkedListMultimap - traversal in order of adding 
○ TreeMultimap - sorted Multimap
Multimap before 
1. Map<Employee, List<Role>> map = new HashMap<Employee, List<Role>>(); 
2. public void grant(Employee employee, Role role) { 
3. List<Role> roles = map.get(employee); 
4. if (roles == null) { 
5. roles = new ArrayList<Role>(); 
6. map.put(employee, roles); 
7. } 
8. roles.add(role); 
9. }
Multimap after 
1. Multimap<Employee, Role> multimap = ArrayListMultimap.create(); 
2. public void grant(Employee employee, Role role) { 
3. multimap.put(employee, role); 
4. }
BiMap 
● Bidirectional map - values can be used as keys. 
1. BiMap<String, Integer> bimap = HashBiMap.create(); 
2. bimap.put("ONE", 1); 
3. bimap.put("TWO", 2); 
4. BiMap<Integer, String> inversed = bimap.inverse();
Multiset 
● allows adding duplicates 
● stores the number of duplicates 
● HashMultiset, LinkedHashMultiset, TreeMultiset, ConcurrentHashMultiset 
1. Multiset<String> tags = HashMultiset.create(); 
2. for (BlogPost post : getAllBlogPosts()) { 
3. tags.addAll(post.getTags()); 
4. } 
5. tags.elementSet(); 
6. tags.count("habr");
Immutable collections 
● ImmutableList, ImmutableSet, ImmutableMap etc. 
ImmutableSet<Integer> LUCKY_NUMBERS = 
ImmutableSet.of(4, 8, 15, 16, 23, 42); 
ImmutableMap<Integer, String> numberNames = 
ImmutableMap.of(1, "ONE", 2, "TWO", 3, "THREE"); 
//max 5 elements by .of
ImmutableMap builder 
1. Map<Integer, String> numberNamesExtended = 
2. ImmutableMap.<Integer, String>builder()() 
3. .putAll(numberNames) 
4. .put(5, "FIVE") 
5. .put(6, "SIX") 
6. .build();
Utils 
● Lists, Sets, Map, Strings 
● Iterables, FluentIterable, Optional 
● Predicate, Function 
● Ordering, Range 
Lets practice
Articles 
● http://docs.guava-libraries.googlecode. 
com/git/javadoc/index.html?overview-summary.html 
● http://java.dzone.com/articles/google-guava-cleaner-code 
● http://habrahabr.ru/post/91215

More Related Content

More from Alice Zabolotnaya

Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)
Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)
Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)Alice Zabolotnaya
 
IT career advice or how to get your first job in IT
IT career advice or how to get your first job in ITIT career advice or how to get your first job in IT
IT career advice or how to get your first job in ITAlice Zabolotnaya
 
Getting job in IT: Technical Interview
Getting job in IT: Technical InterviewGetting job in IT: Technical Interview
Getting job in IT: Technical InterviewAlice Zabolotnaya
 
Getting job in IT: Special features
Getting job in IT: Special featuresGetting job in IT: Special features
Getting job in IT: Special featuresAlice Zabolotnaya
 
You are on board: drive your routine
You are on board: drive your routineYou are on board: drive your routine
You are on board: drive your routineAlice Zabolotnaya
 
Map of IT: Professions and trends (2015oct)
Map of IT: Professions and trends (2015oct)Map of IT: Professions and trends (2015oct)
Map of IT: Professions and trends (2015oct)Alice Zabolotnaya
 
How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)
How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)
How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)Alice Zabolotnaya
 
How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)
How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)
How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)Alice Zabolotnaya
 
How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)
How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)
How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)Alice Zabolotnaya
 
How to-day ciklum-sye (WHAT IS CIKLUM )
How to-day ciklum-sye (WHAT IS CIKLUM )How to-day ciklum-sye (WHAT IS CIKLUM )
How to-day ciklum-sye (WHAT IS CIKLUM )Alice Zabolotnaya
 
How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)
How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)
How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)Alice Zabolotnaya
 
Your supercool combo to get your first job in it
Your supercool combo to get your first job in it Your supercool combo to get your first job in it
Your supercool combo to get your first job in it Alice Zabolotnaya
 
Internship programs; Code WW experience, Elena Avramenko
Internship programs; Code WW experience, Elena AvramenkoInternship programs; Code WW experience, Elena Avramenko
Internship programs; Code WW experience, Elena AvramenkoAlice Zabolotnaya
 
Simple rules of making a CV, Nadezhda Steblivets
Simple rules of making a CV, Nadezhda SteblivetsSimple rules of making a CV, Nadezhda Steblivets
Simple rules of making a CV, Nadezhda SteblivetsAlice Zabolotnaya
 
Map of IT : professions_and_trends, Maxym Mykhalchuk
Map of IT : professions_and_trends, Maxym MykhalchukMap of IT : professions_and_trends, Maxym Mykhalchuk
Map of IT : professions_and_trends, Maxym MykhalchukAlice Zabolotnaya
 
Trends of IT labour market development: Ukraine in global context, Svetlana Y...
Trends of IT labour market development: Ukraine in global context, Svetlana Y...Trends of IT labour market development: Ukraine in global context, Svetlana Y...
Trends of IT labour market development: Ukraine in global context, Svetlana Y...Alice Zabolotnaya
 
It career guidance by Maxym Mykhalchuk
It career guidance by Maxym MykhalchukIt career guidance by Maxym Mykhalchuk
It career guidance by Maxym MykhalchukAlice Zabolotnaya
 
Sabina Krupko, Nadiia Steblivets
Sabina Krupko, Nadiia SteblivetsSabina Krupko, Nadiia Steblivets
Sabina Krupko, Nadiia SteblivetsAlice Zabolotnaya
 

More from Alice Zabolotnaya (20)

Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)
Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)
Жизненный цикл проекта и взаимоотношения с разработчиками (Д. Зносков, 7.07.16)
 
IT career advice or how to get your first job in IT
IT career advice or how to get your first job in ITIT career advice or how to get your first job in IT
IT career advice or how to get your first job in IT
 
IT industry. Ciklum. You
IT industry. Ciklum. You IT industry. Ciklum. You
IT industry. Ciklum. You
 
Getting job in IT: Technical Interview
Getting job in IT: Technical InterviewGetting job in IT: Technical Interview
Getting job in IT: Technical Interview
 
Getting job in IT: Special features
Getting job in IT: Special featuresGetting job in IT: Special features
Getting job in IT: Special features
 
HR interview
HR interviewHR interview
HR interview
 
You are on board: drive your routine
You are on board: drive your routineYou are on board: drive your routine
You are on board: drive your routine
 
Map of IT: Professions and trends (2015oct)
Map of IT: Professions and trends (2015oct)Map of IT: Professions and trends (2015oct)
Map of IT: Professions and trends (2015oct)
 
How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)
How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)
How to-day-say (HOW TO MAKE YOUR UNIVERSITY PROGRAM MORE IT-ISH)
 
How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)
How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)
How to-day-yay (HOW TO DIVE INTO THE WORLD OF MOBILE DEVELOPMENT)
 
How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)
How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)
How to-day-bfi (HOW TO SUCCEED WORKING IN AN INTERNATIONAL ENVIRONMENT)
 
How to-day ciklum-sye (WHAT IS CIKLUM )
How to-day ciklum-sye (WHAT IS CIKLUM )How to-day ciklum-sye (WHAT IS CIKLUM )
How to-day ciklum-sye (WHAT IS CIKLUM )
 
How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)
How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)
How to-day ciklum - elpo (HOW TO GET YOUR FIRST JOB IN IT)
 
Your supercool combo to get your first job in it
Your supercool combo to get your first job in it Your supercool combo to get your first job in it
Your supercool combo to get your first job in it
 
Internship programs; Code WW experience, Elena Avramenko
Internship programs; Code WW experience, Elena AvramenkoInternship programs; Code WW experience, Elena Avramenko
Internship programs; Code WW experience, Elena Avramenko
 
Simple rules of making a CV, Nadezhda Steblivets
Simple rules of making a CV, Nadezhda SteblivetsSimple rules of making a CV, Nadezhda Steblivets
Simple rules of making a CV, Nadezhda Steblivets
 
Map of IT : professions_and_trends, Maxym Mykhalchuk
Map of IT : professions_and_trends, Maxym MykhalchukMap of IT : professions_and_trends, Maxym Mykhalchuk
Map of IT : professions_and_trends, Maxym Mykhalchuk
 
Trends of IT labour market development: Ukraine in global context, Svetlana Y...
Trends of IT labour market development: Ukraine in global context, Svetlana Y...Trends of IT labour market development: Ukraine in global context, Svetlana Y...
Trends of IT labour market development: Ukraine in global context, Svetlana Y...
 
It career guidance by Maxym Mykhalchuk
It career guidance by Maxym MykhalchukIt career guidance by Maxym Mykhalchuk
It career guidance by Maxym Mykhalchuk
 
Sabina Krupko, Nadiia Steblivets
Sabina Krupko, Nadiia SteblivetsSabina Krupko, Nadiia Steblivets
Sabina Krupko, Nadiia Steblivets
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 

Recently uploaded (20)

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

Google Guava

  • 1. make your code easier and faster
  • 2. New data structures ● Multimap: one key - several values ○ HashMultimap - does not allow duplicating key-value pairs ○ LinkedListMultimap - traversal in order of adding ○ TreeMultimap - sorted Multimap
  • 3. Multimap before 1. Map<Employee, List<Role>> map = new HashMap<Employee, List<Role>>(); 2. public void grant(Employee employee, Role role) { 3. List<Role> roles = map.get(employee); 4. if (roles == null) { 5. roles = new ArrayList<Role>(); 6. map.put(employee, roles); 7. } 8. roles.add(role); 9. }
  • 4. Multimap after 1. Multimap<Employee, Role> multimap = ArrayListMultimap.create(); 2. public void grant(Employee employee, Role role) { 3. multimap.put(employee, role); 4. }
  • 5. BiMap ● Bidirectional map - values can be used as keys. 1. BiMap<String, Integer> bimap = HashBiMap.create(); 2. bimap.put("ONE", 1); 3. bimap.put("TWO", 2); 4. BiMap<Integer, String> inversed = bimap.inverse();
  • 6. Multiset ● allows adding duplicates ● stores the number of duplicates ● HashMultiset, LinkedHashMultiset, TreeMultiset, ConcurrentHashMultiset 1. Multiset<String> tags = HashMultiset.create(); 2. for (BlogPost post : getAllBlogPosts()) { 3. tags.addAll(post.getTags()); 4. } 5. tags.elementSet(); 6. tags.count("habr");
  • 7. Immutable collections ● ImmutableList, ImmutableSet, ImmutableMap etc. ImmutableSet<Integer> LUCKY_NUMBERS = ImmutableSet.of(4, 8, 15, 16, 23, 42); ImmutableMap<Integer, String> numberNames = ImmutableMap.of(1, "ONE", 2, "TWO", 3, "THREE"); //max 5 elements by .of
  • 8. ImmutableMap builder 1. Map<Integer, String> numberNamesExtended = 2. ImmutableMap.<Integer, String>builder()() 3. .putAll(numberNames) 4. .put(5, "FIVE") 5. .put(6, "SIX") 6. .build();
  • 9. Utils ● Lists, Sets, Map, Strings ● Iterables, FluentIterable, Optional ● Predicate, Function ● Ordering, Range Lets practice
  • 10. Articles ● http://docs.guava-libraries.googlecode. com/git/javadoc/index.html?overview-summary.html ● http://java.dzone.com/articles/google-guava-cleaner-code ● http://habrahabr.ru/post/91215