Class CoreUtils


  • public class CoreUtils
    extends java.lang.Object
    Contains utility functions used across the framework.
    • Constructor Summary

      Constructors 
      Constructor Description
      CoreUtils()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void checkNotNull​(java.lang.Object p_param, java.lang.String p_message)
      Throws a NullPointerException if p_param is null.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CoreUtils

        public CoreUtils()
    • Method Detail

      • checkNotNull

        public static void checkNotNull​(java.lang.Object p_param,
                                        java.lang.String p_message)
        Throws a NullPointerException if p_param is null.
        Parameters:
        p_param - Object to check if null.
        p_message - Message to use in exception.
        Throws:
        java.lang.NullPointerException - If p_param is null.