Class AbstractSparseStringMatrix2D

    • Constructor Detail

      • AbstractSparseStringMatrix2D

        public AbstractSparseStringMatrix2D​(long rows,
                                            long columns)
    • Method Detail

      • getString

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

        public final void setString​(java.lang.String value,
                                    long... coordinates)
        Description copied from interface: StringMatrix
        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.
        Specified by:
        setString in interface StringMatrix
        coordinates - location of the entry @