Java SE 8 Course
Java Comments
Comments are a way to write notes for our code snippets, and a way to explain how the function/class works.
Java Primitive and Non-primitive Data Types
In this lesson, you will learn about the data types available in Java.
Java Variables and Data Types
This is an introductory lesson on variables or different data types available in Java.
Introduction to Java Enums
Definition of enums In Java, an enum (short for "enumeration") is a special data type that allows developers to define a set of named constants grouped under a single type. Each constant represents a unique value that can be assigned to a variable of that enum type. Enums