Core Java
-

Adding Partition To Existing Table In Oracle
Learn How To Add Partition To Existing Table In Oracle. New changes to partition in Oracle 12c. partitioned table using…
Read More » -

How to create a thread without implementing the Runnable interface in Java?
A quick programming guide to creating a thread without using the Runnable interface in java. This can be achieved using…
Read More » -

Adding Range Type in Java
1. Introduction Modern and more recent programming languages have the concept of a range type. Programming languages such as Python,…
Read More » -

Java String API regionMatches()
Quick guide to Java String API regionMatches() Method with Examples. This method is used to compare two sub strings. Syntax:…
Read More » -

Java 8 Optional filter()
A quick example guide to Java 8 Optional filter() Method. filter(Predicate predicate) method used to return a Optional object for…
Read More » -

How to change procedural code into object-oriented one?
What style should Clean Code be written in? Clean Code is not always object-oriented. Sometimes it will be written in…
Read More » -

Java Compress/Decompress String/Data
Java provides the Deflater class for general purpose compression using the ZLIB compression library. It also provides the DeflaterOutputStream which…
Read More » -

Optional ofNullable() method (With Examples)
A quick guide to Optional ofNullable() method in Java 8 API with Example programs. How to use in the real…
Read More » -

Optional orElse vs orElseGet
Java 8 introduced a fantastic concept of Optional, which we looked into in our blog Java 8 Optional. So just…
Read More »
