writing test cases in java with enums
March 18, 2017I recently discovered some new (to me) features of enums, and so naturally I am now using them for everything. One of these new-to-me…
I recently discovered some new (to me) features of enums, and so naturally I am now using them for everything. One of these new-to-me…
While wading into the wide world of high throughput production Java, I have been enjoying guidance from “Java Concurrency in Practice” by…
I have been working on a Java concurrency bug at work for the last few weeks, and the intertwining concepts of immutability and publication…
Annotations are a means of adding metadata to Java source code. They can be applied to declarations of classes, fields, methods, and types…
For a recent java coding challenge I was asked, among other things, to make a server. It has been several years since I last attempted it…