Interface StringMatrix

    • Method Detail

      • getString

        java.lang.String getString​(long... coordinates)
        Returns a String representation of an entry in the matrix. The stored value will be converted to a String as good as possible.
        Parameters:
        coordinates - location of the entry
        Returns:
        a String representation of the entry @
      • setString

        void setString​(java.lang.String string,
                       long... coordinates)
        Sets an entry in the matrix to a String value. If the matrix cannot store Strings, the value will be represented as good as possible.
        Parameters:
        value - String value
        coordinates - location of the entry @