Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

entrySet()

Example

Retrieve all the mappings contained within a map.

import java.util.HashMap;
public class Main {
  public static void main(String[] args) {
    HashMap<String, String> capitalCities = new HashMap<String, String>();
    capitalCities.put("England", "London");
    capitalCities.put("Germany", "Berlin");
    capitalCities.put("Norway", "Oslo");
    capitalCities.put("USA", "Washington DC");
   System.out.println(capitalCities.entrySet());
  }
}

Definition and Usage

The entrySet() method returns a set containing all of the entries in the map.

Note: The returned set is a view of the map, which means that changing the set also changes the map.

Syntax

public Set< Map.Entry<K,V> > entrySet()

K and V denote the data types of the keys and values within the map.

Technical Details

Returns:

A set comprising all entries present in the map.