package java.lang;

public class Byte
{
 public static final byte MIN_VALUE = -128;
 public static final byte MAX_VALUE = 127;

 public static byte parseByte(String) throws NumberFormatException
 {
  return 0;
 }
 
 public static byte parseByte(String, int) throws NumberFormatException
 {
  return 0;
 }
 
 public Byte(byte)
 {
 }
 
 public byte byteValue()
 {
  return 0;
 }
 
 public String toString()
 {
  return null;
 }
 
 public int hashCode()
 {
  return 0;
 }
 
 public boolean equals(Object)
 {
  return false;
 }
 
}