ページの先頭行へ戻る
Interstage Application Server リファレンスマニュアル(API編)

3.13.2 org.omg.CORBA.portable.OutputStream.write_<type>_array()

名前

  org.omg.CORBA.portable.OutputStream.write_<type>_array

形式

  public void write_boolean_array(boolean[] value, int offset, int length)
  public void write_char_array(char[] value, int offset, int length)
  public void write_double_array(double[] value, int offset, int length)
  public void write_float_array(float[] value, int offset, int length)
  public void write_long_array(int[] value, int offset, int length)
  public void write_longlong_array(long[] value, int offset, int length)
  public void write_octet_array(byte[] value, int offset, int length)
  public void write_short_array(short[] value, int offset, int length)
  public void write_ulong_array(int[] value, int offset, int length)
  public void write_ulonglong_array(long[] value, int offset, int length)
  public void write_ushort_array(short[] value, int offset, int length)
  public void write_wchar_array(char[] value, int offset, int length)

機能説明

  指定した配列の値をこのストリームに書き込みます。

パラメタ

  value

  ストリームに書き込む値

  offset

  ストリーム上のオフセット

  length

  書き込むバッファの長さ

復帰値

  正常終了した場合は、ありません。
  異常終了した場合は、以下の例外が発生します。
    org.omg.CORBA.SystemException

  システム例外発生時に設定された例外情報およびマイナーコードの意味については、“メッセージ集”の“CORBAサービスから通知される例外情報/マイナーコード”を参照してください。

注意事項