As you can see from the following diagram, packages are comprised of classes and interfaces, and modules are comprised of packages. Modules are a container of packages. This is the basic premise, at a very high level, of Java's modular system. It is important to view modules as part of the modular system and not simply as a new level of abstraction above packages, as the following diagram suggests:
So, modules are new to Java 9 and as you would expect, they require declaration before they can be used. A module's declaration includes names of other modules in which it has a dependency. It also exports packages for other modules that have dependencies to it. Modular declarations are arguably the most important modular issue to address as you start developing with Java. Here is an example:
module com.three19.irisScan {
// modules...