Core Java
-
Too Many Parameters in Java Methods, Part 5: Method Naming
In my previous post (Part 4 of my series on dealing with too many parameters in Java methods), I looked…
Read More » -
Java User Defined Types (UDT) in Java DB
Java DB is a relational database management system that is based on the Java programming language and SQL. This is…
Read More » -
1000 Responses to Java Is Not Dying
When 1000 comments are posted on an editorial, it’s worth considering what is being said. My editorial last week, ”…
Read More » -
Non-Blocking Asynchronous Java 8 and Scala’s Try/Success/Failure
Inspired by a recent newsletter from Heinz Kabutz as well as Scala’s Futures which I investigated in my recent book,…
Read More » -
Too Many Parameters in Java Methods, Part 4: Overloading
One of the problems with expecting too many parameters to be passed to a Java method is that it is…
Read More » -
Java: Incrementally read/stream a CSV file
I’ve been doing some work which involves reading in CSV files, for which I’ve been using OpenCSV, and my initial…
Read More » -
Integrate AspectJ with NetBeans Platform Development
Are you developing your project using the NetBeans Platform? Are you willing to use AspectJ to use AOP? You do…
Read More » -
Too Many Parameters in Java Methods, Part 3: Builder Pattern
In my two immediately previous posts, I looked at reducing the number of parameters required for a constructor or method…
Read More » -
Too Many Parameters in Java Methods, Part 2: Parameters Object
In my previous post, I looked at some of the problems associated with long parameters lists for methods and constructors.…
Read More »