Classe java.lang.Short


The Short class is the standard wrapper for short values.
	package java.lang;

		(>JDK1.1)public final
	class Short extends Number {

	    // Constantes
		(>JDK1.1)    public static final short   MIN_VALUE = -32768;
		(>JDK1.1)    public static final short   MAX_VALUE = 32767;
		(>JDK1.1)    public static final Class	TYPE = Class.getPrimitiveClass("short");

	    // Constructeurs publics
		(>JDK1.1)    public Short(short value);
		(>JDK1.1)    public Short(String s)
		throws NumberFormatException;

	    // Méthodes de classe
		(>JDK1.1)    public static Short decode(String nm)
		throws NumberFormatException;
		(>JDK1.1)    public static short parseShort(String s)
		throws NumberFormatException;
		(>JDK1.1)    public static short parseShort(String s, int radix)
		throws NumberFormatException;
		(>JDK1.1)    public static String toString(short s);
		(>JDK1.1)    public static Short valueOf(String s, int radix)
		throws NumberFormatException;
		(>JDK1.1)    public static Short valueOf(String s)
		throws NumberFormatException;

	    // Méthodes d'instance publiques
		(>JDK1.1)    public byte byteValue();
		(>JDK1.1)    public double doubleValue();
		(>JDK1.1)    public boolean equals(Object obj);
		(>JDK1.1)    public float floatValue();
		(>JDK1.1)    public int hashCode();
		(>JDK1.1)    public int intValue();
		(>JDK1.1)    public long longValue();
		(>JDK1.1)    public short shortValue();
		(>JDK1.1)    public String toString();
	}

Christophe Merlet
redfox@redfoxcenter.org
©Tous droits réservés
11 septembre 1998