Class Properties.Str

    • Constructor Summary

      Constructors 
      Constructor Description
      Str​(java.lang.String value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)
      Compares this object to the specified object.
      int hashCode()
      Returns a hash code for this Str.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • Str

        public Str​(java.lang.String value)
    • Method Detail

      • hashCode

        public int hashCode()
        Returns a hash code for this Str.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        the hash code of the enclosed String value.
        Since:
        TotalCross 1.25
      • equals

        public boolean equals​(java.lang.Object obj)
        Compares this object to the specified object. The result is true if and only if the argument is not null and is a String object, or another Str object, that represents the same sequence of characters as this object.
        Overrides:
        equals in class java.lang.Object
        Since:
        TotalCross 1.25