public function StarGetStarsById($star_ids)
 {
     // $star_id : IDType or this array
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["star_id"] = $this->getRegularArgs($star_ids, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::StarGetStarsById($reg_args);
     $this->methodClose();
     return $this->decodeString($results->star_data);
 }