Consider this Scanner input example.
Scanner
Scanner user_input = new Scanner( System.in );
Here Scanner is the CLASS.
"System.in" is a parameter that is taken by Scanner Class where "System" is a class and "in" is a static variable of type InputStream which tells the Java Compiler that System input will be provided through console(keyboard).