Class VObjects


  • public final class VObjects
    extends java.lang.Object
    Just like Objects, this class consists of static utility methods for operating on VMF objects (instances of VObject), or checking certain conditions before operation.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean equals​(java.lang.Object o1, java.lang.Object o2)
      Returns true if the arguments are equal to each other; false otherwise.
      • Methods inherited from class java.lang.Object

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

      • equals

        public static boolean equals​(java.lang.Object o1,
                                     java.lang.Object o2)
        Returns true if the arguments are equal to each other; false otherwise. If the specified objects are model instances then the VMF equals method is used. If the specified objects are collections which contain model instances then the VMF equals method is used element-wise.
        Parameters:
        o1 - first object to compare
        o2 - second object to compare
        Returns:
        true if the arguments are equal to each other; false otherwise.