Community driven content discussing all aspects of software development from DevOps to design patterns. If you want to master functional programming, the best place to start is with the Java Function ...
This article gives you the inner power of reflection. Actually speaking there is no concept of hacking. It is just a tweak you can make to a java object through reflection. In this article I will show ...
With enterprise applications, it's not unusual to aggregate content published on live sites. As such, it's a good idea to develop a level of familiarity with one of the popular Java screen scraper ...
Serialization is the process of saving an object’s state to a sequence of bytes; deserialization is the process of rebuilding those bytes into a live object. The Java Serialization API provides a ...
Project Valhalla is developing inline classes to improve affinity of Java programs to modern hardware Inline classes enable developers to write types that behave more like Java's inbuilt primitive ...
I have a class, say TextHolder, that overrides Object.equals() to return true if both strings in each object are equal - <tt>new TextHolder("Hello World!").equals(new ...