package java.lang;

public class Short
{
 public static final short MIN_VALUE = -32768;
 public static final short MAX_VALUE = 32767;

 public static short parseShort(String) throws NumberFormatException
 {
  return 0;
 }
 
 public static short parseShort(String, int) throws NumberFormatException
 {
  return 0;
 }
 
 public Short(short)
 {
 }
 
 public short shortValue()
 {
  return 0;
 }
 
 public String toString()
 {
  return null;
 }
 
 public int hashCode()
 {
  return 0;
 }
 
 public boolean equals(Object)
 {
  return false;
 }
 
}