Here you can find the source of coalesce(Object src, Object defaultValue)
public static Object coalesce(Object src, Object defaultValue)
//package com.java2s; public class Main { public static Object coalesce(Object src, Object defaultValue) { return null != src ? src : defaultValue; }//from w ww .j ava 2 s . c o m }