Package information
Class Information<T>
java.lang.Object
information.Information<T>
-
Constructor Summary
ConstructorDescriptionpour construire une information videInformation
(T[] content) pour construire à partir d'un tableau de T une information -
Method Summary
Modifier and TypeMethodDescriptionvoid
pour ajouter un élément à la fin de l'informationboolean
pour comparer l'information courante avec une autre informationiemeElement
(int i) pour renvoyer un élément d'une informationiterator()
pour utilisation du "for each"int
pour connaître le nombre d'éléments d'une informationvoid
setIemeElement
(int i, T v) pour modifier le ième élément d'une informationtoString()
pour afficher une informationMethods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
Information
public Information()pour construire une information vide -
Information
pour construire à partir d'un tableau de T une information- Parameters:
content
- le tableau d'éléments pour initialiser l'information construite
-
-
Method Details
-
nbElements
public int nbElements()pour connaître le nombre d'éléments d'une information- Returns:
- le nombre d'éléments de l'information
-
iemeElement
pour renvoyer un élément d'une information- Parameters:
i
- le rang de l'information à renvoyer (à partir de 0)- Returns:
- le ieme élément de l'information
-
setIemeElement
pour modifier le ième élément d'une information- Parameters:
i
- le rang de l'information à modifier (à partir de 0)v
- la nouvelle ieme information
-
add
pour ajouter un élément à la fin de l'information- Parameters:
valeur
- l'élément à rajouter
-
equals
pour comparer l'information courante avec une autre information -
toString
-
iterator
-