Class TInteger
java.lang.Object
|
+--TObject
|
+--TInteger
- public class TInteger
- extends TObject
La classe TInteger est la classe englobante du type primaire integer(int).
- Since:
- Release 1.0
Field Summary |
static int |
MAX_VALUE
La plus grande valeur que peut prendre un integer. |
static int |
MIN_VALUE
La plus petite valeur que peut prendre un integer. |
Method Summary |
static int |
parseInt(TString string)
Cette méthode convertie une chaîne de caractère en entier de type long. |
static TString |
toString(int value)
Cette méthode retourne un entier de type integer converti en chaîne de caractères. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
MAX_VALUE
public static final int MAX_VALUE
- La plus grande valeur que peut prendre un integer.
MIN_VALUE
public static final int MIN_VALUE
- La plus petite valeur que peut prendre un integer.
TInteger
public TInteger()
toString
public static TString toString(int value)
- Cette méthode retourne un entier de type integer converti en chaîne de caractères.
- Parameters:
value
- L'entier à convertir.
- Returns:
- string - La chaîne de caractère.
- Since:
- Release 1.0
parseInt
public static int parseInt(TString string)
- Cette méthode convertie une chaîne de caractère en entier de type long.
- Returns:
- value - L'entier de type long.
- Since:
- Release 1.0