Interface BasicMatrixIterator

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int[] getCoordinates()
      Retourne les coordonnés de l'élément.
      double getValue()
      Retourne la valeur courant pointé par l'iterator.
      boolean hasNext()
      Retourne vrai s'il existe un suivant.
      boolean next()
      Passe à l'élément suivant.
      void setValue​(double value)
      Modifie la valeur courant pointé par l'iterator.
    • Method Detail

      • hasNext

        boolean hasNext()
        Retourne vrai s'il existe un suivant.
        Returns:
        vrai s'il y a un suivant, faux sinon
      • next

        boolean next()
        Passe à l'élément suivant.
        Returns:
        vrai s'il y a un suivant, faux sinon
      • getCoordinates

        int[] getCoordinates()
        Retourne les coordonnés de l'élément.
        Returns:
        current element coordinates
      • getValue

        double getValue()
        Retourne la valeur courant pointé par l'iterator.
        Returns:
        current element value
      • setValue

        void setValue​(double value)
        Modifie la valeur courant pointé par l'iterator.
        Parameters:
        value - new value to set to current element