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