Java Comments
Comments allow you to add documentation in code.
Java Number Operators
The number operators are pretty standard across programming languages.
Working With Strings in Java
Basic usages of strings Java developers need to know.
Java If Statement
If statements allow for conditional execution of code based off a true or false condition.
Type Conversion in Java
Converting from one data type to another is known as type casting.
Java Primitive Data Types
Java supports eight different primitive types.
How Autoboxing and Unboxing Works in Java
Autoboxing and unboxing are the automatic conversions done by the Java compiler.
Java Streams
Java's stream API is a powerful API for working with Java collections.
Simplifying Logging in Test Code
Logging is for production code and shouldn't be used in test code.
How to Use Java's Optional Class
Java's Optional class is a partial replacement for null and allows for more of a compile-time null check.