best way to process data received via XBEE?

ok thanks for your help i think this is exactly what i need
so to make sure:

if i type : if ( Serial.available > 0 ) {
//do something
}
this action will take place if Serial receives anything

if i type: if ( Serial.available > 3 ) {
// do something
}
this action will only occur if i've received at least 4 data?