Interface ObjectUtils


  • public interface ObjectUtils
    • Method Summary

      Static Methods 
      Modifier and Type Method Description
      static <T1,​T2,​U>
      boolean
      isSafeEqual​(T1 t1, java.util.function.Function<? super T1,​? extends U> propertyExtractor1, T2 t2, java.util.function.Function<? super T2,​? extends U> propertyExtractor2)  
      static <T,​U>
      boolean
      isSafeEqual​(T t1, T t2, java.util.function.Function<? super T,​? extends U> propertyExtractor)  
    • Method Detail

      • isSafeEqual

        static <T,​U> boolean isSafeEqual​(T t1,
                                               T t2,
                                               java.util.function.Function<? super T,​? extends U> propertyExtractor)
      • isSafeEqual

        static <T1,​T2,​U> boolean isSafeEqual​(T1 t1,
                                                         java.util.function.Function<? super T1,​? extends U> propertyExtractor1,
                                                         T2 t2,
                                                         java.util.function.Function<? super T2,​? extends U> propertyExtractor2)