Class BaseUtils


  • @Deprecated
    public abstract class BaseUtils
    extends java.lang.Object
    Deprecated.
    Base Utilities class
    Since:
    1.0.0
    Author:
    Mercy
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected BaseUtils()
      Deprecated.
      The base class for utility classes.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • BaseUtils

        protected BaseUtils()
                     throws java.lang.IllegalStateException
        Deprecated.
        The base class for utility classes. Instantiation is not supported.

        Example Usage

        
           // Subclass BaseUtils to create a utility class:
           public class MyUtils extends BaseUtils {
               // utility methods
           }
         
        Throws:
        java.lang.IllegalStateException - always, as utility classes should not be instantiated
        Since:
        1.0.0