class Byte : Object public const_c byte value public static const_c byte MAX_VALUE public static const_c byte MIN_VALUE public Byte( ) public Byte( Byte value ) public Byte( byte value ) public Byte( String value ) public virtual String toString( ) public Integer operator+( ) public Byte operator++( ) public Byte operator--( ) public Byte operator~( ) public bool operator==( Byte rightOperand ) public bool operator==( byte rightOperand ) public bool operator!=( Byte rightOperand ) public bool operator!=( byte rightOperand ) public bool operator>( Byte rightOperand ) public bool operator>( byte rightOperand ) public bool operator>=( Byte rightOperand ) public bool operator>=( byte rightOperand ) public bool operator<( Byte rightOperand ) public bool operator<( byte rightOperand ) public bool operator<=( Byte rightOperand ) public bool operator<=( byte rightOperand ) public Byte operator+( Byte rightOperand ) public Byte operator+( byte rightOperand ) public Byte operator-( Byte rightOperand ) public Byte operator-( byte rightOperand ) public Byte operator*( Byte rightOperand ) public Byte operator*( byte rightOperand ) public Byte operator/( Byte rightOperand ) public Byte operator/( byte rightOperand ) public Byte operator%( Byte rightOperand ) public Byte operator%( byte rightOperand ) public Byte operator|( Byte rightOperand ) public Byte operator|( byte rightOperand ) public Byte operator&( Byte rightOperand ) public Byte operator&( byte rightOperand ) public Byte operator^( Byte rightOperand ) public Byte operator^( byte rightOperand ) public Byte operator<<( Byte rightOperand ) public Byte operator<<( byte rightOperand ) public Byte operator>>( Byte rightOperand ) public Byte operator>>( byte rightOperand ) public static String toString( byte value ) |