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

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
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
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
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
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
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
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
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
 

Recently uploaded (20)

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
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
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
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
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 

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