java 9 immutable create list

Java 9 create immutable List

Table of ContentsDetails Explanation of java.util.List enhancement in Java 9Example: It will not support following things:1.List.of method return immutable List object so modification is not possible2. List.Of() method does not allowed null…

java 9 immutable create map

Java 9 create immutable Map

Details Explanation of java.util.Map Collection enhancement in Java 9 The Map.of() and Map.ofEntries() static factory methods provide a convenient way to create immutable maps. The Map instances created by these methods…

java 9 immutable create set

Java 9 create immutable Set

Table of ContentsDetails Explanation of java.util.Set enhancement in Java 9Example: It will not support following things:Set.of method return immutable Set object so modification is not possibleSet.Of() method does not allowed duplicate…

SOLR INDEX TIME BOOST

Solr Index Time Boost

There are two stages where documents can be boosted: At index time and at query time. here we discuss index time boost feature solr. This is probably the simplest way,…