Class Properties.Boolean

    • Constructor Summary

      Constructors 
      Constructor Description
      Boolean​(boolean value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)
      Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object.
      int hashCode()
      Returns a hash code for this Boolean object.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Boolean

        public Boolean​(boolean value)
    • Method Detail

      • hashCode

        public int hashCode()
        Returns a hash code for this Boolean object.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        the integer 1231 if this object represents true; returns the integer 1237 if this object represents false.
        Since:
        TotalCross 1.25
      • equals

        public boolean equals​(java.lang.Object obj)
        Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object.
        Overrides:
        equals in class java.lang.Object
        Since:
        TotalCross 1.25