JML

net.sf.jqql.beans
Class ContactInfo

java.lang.Object
  extended by net.sf.jqql.beans.ContactInfo

public class ContactInfo
extends Object

a user's info in detail, all in string form, order in according to QQ request user info reply packet, totally 37 items. 一个用户的详细信息,全部都是字符串形式,按照QQ请求用户信息应答包中的顺序排列,一共37项

Author:
luma
See Also:
GetUserInfoReplyPacket

Field Summary
 String address
           
 int age
           
 int authType
           
 int blood
           
 String city
           
 String college
           
 String country
           
static String DIVIDER
          divider(char) 30 分割符(char)30.
 String email
           
 int fieldCount
           
 String gender
           
 int head
           
 String homepage
           
 int horoscope
           
 String intro
           
 String mobile
           
 String name
           
 String nick
           
 String occupation
           
 int openContact
           
 String province
           
 int qq
           
 String telephone
           
 int userFlag
           
 String zipcode
           
 int zodiac
           
 
Constructor Summary
ContactInfo()
          Constructor 构造函数
ContactInfo(ByteBuffer buf)
          Constructor 构造函数
 
Method Summary
 String[] getInfoArray()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DIVIDER

public static final String DIVIDER
divider(char) 30 分割符(char)30.


qq

public int qq

nick

public String nick

country

public String country

province

public String province

zipcode

public String zipcode

address

public String address

telephone

public String telephone

age

public int age

gender

public String gender

name

public String name

email

public String email

occupation

public String occupation

homepage

public String homepage

authType

public int authType

head

public int head

mobile

public String mobile

intro

public String intro

city

public String city

openContact

public int openContact

college

public String college

horoscope

public int horoscope

zodiac

public int zodiac

blood

public int blood

userFlag

public int userFlag

fieldCount

public int fieldCount
Constructor Detail

ContactInfo

public ContactInfo()
Constructor 构造函数


ContactInfo

public ContactInfo(ByteBuffer buf)
Constructor 构造函数

Method Detail

getInfoArray

public String[] getInfoArray()
Returns:
get info string array. 得到信息字符串数组

JML