Core Java
-
Using Java 12 in Eclipse
1. Install JDK 12 Link: https://www.oracle.com/technetwork/java/javase/downloads/jdk12-downloads-5295953.html 2. Install Eclipse 4.11 Link: https://download.eclipse.org/eclipse/downloads/drops4/R-4.11-201903070500 3. Install Eclipse Java 12 Support Start Eclipse…
Read More » -
Reflection selector expression
Java::Geci is a code generator that runs during unit test time. If the generated code fits the actual version of…
Read More » -
Java 12: Switch Expressions
In Java 12, the switch statement has been enhanced so that it can be used as an expression. It is…
Read More » -
Generating setters and getters using Java::Geci
In the article , we created very simple hello-world generators to introduce the framework and how to generate generators generally.…
Read More » -
Flexible Styling with Varying Criteria for POI-created documents
Intro This post explains the difficulties with applying styles to a document based on varying criteria and offers a solution.…
Read More » -
Explicit No-Arguments Constructor Versus Default Constructor
Most developers new to Java quickly learn that a “default constructor” is implicitly created (by javac) for their Java classes…
Read More » -
Box old objects to be autoclosable
Since Java 7 we can use try-with-resources and have any object automatically closed that implements the Autocloseable interface. If the…
Read More » -
Java: How to Slash Down Building Times Using the Cloud
Building larger Java projects on a laptop with Maven can be frustrating and slow. Learn how you could slash down…
Read More » -
Java Queue Interface
Introduction: A Queue is a FIFO (First In First Out) abstract data type (ADT). In other words, the elements are…
Read More »