亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? any.java

?? linux下編程用 編譯軟件
?? JAVA
字號:
/* Any.java --   Copyright (C) 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package org.omg.CORBA;import java.io.Serializable;import org.omg.CORBA.portable.IDLEntity;/** * A container that can store a value of either user defined or * primitive IDL type. * * @author Audrius Meskauskas (AudriusA@Bioinformatics.org) */public abstract class Any  implements Serializable, IDLEntity{  /**   * Using v 1.4 serialVersionUID for interoperability.   */  private static final long serialVersionUID = 1217179597823814463L;  /**   * Creates an input stream from that this Any object's value can be   * read (unmarshalled).   */  public abstract org.omg.CORBA.portable.InputStream create_input_stream();  /**   * Creates an output stream into which this <code>Any</code> object's   * value can be written (marshalled).   *   * @return the newly created output stream.   */  public abstract org.omg.CORBA.portable.OutputStream create_output_stream();  /**   * Compare this <code>Any</code> with another <code>Any</code>.   *   * @param other the other instance to compare with.   *   * @return true if both values and value typecodes are equal,   * false otherwise.   */  public abstract boolean equal(Any other);  /**   * Extract the CORBA <code>Object</code> from this <code>Any</code>   * @throws BAD_OPERATION  if this instance contains value other   * than <code>Object</code> or the value has not been set.   */  public abstract org.omg.CORBA.Object extract_Object()                                               throws BAD_OPERATION;  /**   * Extract the CORBA <code>Principal</code> from this <code>Any</code>   *   * @throws NO_IMPLEMENT, always.   *   * @deprecated by CORBA 2.2.   */  public Principal extract_Principal()  {    throw new NO_IMPLEMENT();  }  /**   * Extract an arbitrary {@link org.omg.CORBA.portable.Streamable } from   * this <code>Any</code>.   *   * @throws BAD_INV_ORDER if the caller has invoked operations in the   * wrong order.   *   * @throws NO_IMPLEMENT, always (override to get functionality).   */  public org.omg.CORBA.portable.Streamable extract_Streamable()    throws org.omg.CORBA.BAD_INV_ORDER  {    throw new NO_IMPLEMENT();  }  /**   * Extract the TypeCode from this <code>Any</code> value field.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>TypeCode</code> or the value has not been set.   */  public abstract TypeCode extract_TypeCode()                                     throws BAD_OPERATION;  /**   * Extract the CORBA <code>Value</code> from this <code>Any</code>   * @throws BAD_OPERATION  if this instance contains value other   * than <code>Value</code> or the value has not been set.   */  public abstract java.io.Serializable extract_Value()                                              throws BAD_OPERATION;  /**   * Extract another <code>Any</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>any</code> or the value has not been set.   */  public abstract Any extract_any()                           throws BAD_OPERATION;  /**   * Extract the CORBA <code>boolean</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>boolean</code> or the value has not been set.   */  public abstract boolean extract_boolean()                                   throws BAD_OPERATION;  /**   * Extract the CORBA <code>char</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>char</code> or the value has not been set.   */  public abstract char extract_char()                             throws BAD_OPERATION;  /**   * Extract the CORBA <code>double</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>double</code> or the value has not been set.   */  public abstract double extract_double()                                 throws BAD_OPERATION;  /**   * Extract the CORBA <code>fixed</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>fixed</code> or the value has not been set.   *   * @throws NO_IMPLEMENT, always (override to get functionality).   */  public java.math.BigDecimal extract_fixed()                                     throws BAD_OPERATION  {    throw new NO_IMPLEMENT();  }  /**   * Extract the CORBA <code>float</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>float</code> or the value has not been set.   */  public abstract float extract_float()                               throws BAD_OPERATION;  /**   * Extract the CORBA <code>long</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>long</code> or the value has not been set.   */  public abstract int extract_long()                            throws BAD_OPERATION;  /**   * Extract the CORBA <code>long long</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>longlong</code> or the value has not been set.   */  public abstract long extract_longlong()                                 throws BAD_OPERATION;  /**   * Extract the CORBA <code>octet</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>octet</code> or the value has not been set.   */  public abstract byte extract_octet()                              throws BAD_OPERATION;  /**   * Extract the CORBA <code>short</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>short</code> or the value has not been set.   */  public abstract short extract_short()                               throws BAD_OPERATION;  /**   * Extract the CORBA <code>string</code> from this <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than <code>string</code> or the value has not been set.   */  public abstract String extract_string()                                 throws BAD_OPERATION;  /**   * Extract the CORBA unsigned <code>long</code> from this <code>Any</code>   * @throws BAD_OPERATION  if this instance contains value other   * than unsigned <code>long</code> or the value has not been set.   */  public abstract int extract_ulong()                             throws BAD_OPERATION;  /**   * Extract the CORBA unsigned <code>long long</code> from this   * <code>Any</code>.   *   * @throws BAD_OPERATION  if this instance contains value other   * than unsigned <code>long long</code> or the value has not been set.   */  public abstract long extract_ulonglong()                                  throws BAD_OPERATION;  /**   * Extract the CORBA unsigned <code>short</code> from this <code>Any</code>   * @throws BAD_OPERATION  if this instance contains value other   * than unsigned <code>short</code> or the value has not been set.   */  public abstract short extract_ushort()                                throws BAD_OPERATION;  /**   * Extract the CORBA <code>wchar</code> from this <code>Any</code>   * @throws BAD_OPERATION  if this instance contains value other   * than <code>wchar</code> or the value has not been set.   */  public abstract char extract_wchar()                              throws BAD_OPERATION;  /**   * Extract the CORBA <code>wstring</code> from this <code>Any</code>   * @throws BAD_OPERATION  if this instance contains value other   * than <code>wstring</code> or the value has not been set.   */  public abstract String extract_wstring()                                  throws BAD_OPERATION;  /**   * Insert the CORBA <code>Object</code> into this <code>Any</code>   */  public abstract void insert_Object(org.omg.CORBA.Object x, TypeCode typecode);  /**   * Insert the CORBA <code>Object</code> into this <code>Any</code>   */  public abstract void insert_Object(org.omg.CORBA.Object x);  /**   * Insert the CORBA <code>Principal</code> into this <code>Any</code>.   * @deprecated by CORBA 2.2.   */  public void insert_Principal(Principal x)  {    throw new NO_IMPLEMENT();  }  /**   * Insert the CORBA <code>Streamable</code> into this <code>Any</code>   */  public void insert_Streamable(org.omg.CORBA.portable.Streamable x)  {    throw new NO_IMPLEMENT();  }  /**   * Insert the CORBA <code>TypeCode</code> into this <code>Any</code>   * value field.   */  public abstract void insert_TypeCode(TypeCode typecode);  /**   * Insert the CORBA <code>Value</code> into this <code>Any</code>.   *   * The type of the Any should be set (by {@link #type(TypeCode)})   * before inserting the value.   */  public abstract void insert_Value(Serializable x, TypeCode typecode);  /**   * Insert the CORBA <code>Value</code> into this <code>Any</code>.   *   * The type of the Any should be set (by {@link #type(TypeCode)})   * before inserting the value.   */  public abstract void insert_Value(Serializable x);  /**   * Insert the CORBA <code>any</code> into this <code>Any</code>   */  public abstract void insert_any(Any x);  /**   * Insert the CORBA <code>boolean</code> into this <code>Any</code>   */  public abstract void insert_boolean(boolean x);  /**   * Insert the CORBA <code>char</code> into this <code>Any</code>   */  public abstract void insert_char(char x);  /**   * Insert the CORBA <code>double</code> into this <code>Any</code>   */  public abstract void insert_double(double x);  /**   * Insert the CORBA <code>fixed</code> into this <code>Any</code>   */  public void insert_fixed(java.math.BigDecimal x, TypeCode typecode)  {    throw new NO_IMPLEMENT();  }  /**   * Insert the CORBA <code>fixed</code> into this <code>Any</code>   */  public void insert_fixed(java.math.BigDecimal x)  {    throw new NO_IMPLEMENT();  }  /**   * Insert the CORBA <code>float</code> into this <code>Any</code>   */  public abstract void insert_float(float x);  /**   * Insert the CORBA <code>long</code> into this <code>Any</code>   */  public abstract void insert_long(int x);  /**   * Insert the CORBA <code>longlong</code> into this <code>Any</code>   */  public abstract void insert_longlong(long x);  /**   * Insert the CORBA <code>octet</code> into this <code>Any</code>   */  public abstract void insert_octet(byte x);  /**   * Insert the CORBA <code>short</code> into this <code>Any</code>   */  public abstract void insert_short(short x);  /**   * Insert the CORBA <code>string</code> into this <code>Any</code>   */  public abstract void insert_string(String x);  /**   * Insert the CORBA <code>ulong</code> into this <code>Any</code>   */  public abstract void insert_ulong(int x);  /**   * Insert the CORBA <code>ulonglong</code> into this <code>Any</code>   */  public abstract void insert_ulonglong(long x);  /**   * Insert the CORBA <code>ushort</code> into this <code>Any</code>   */  public abstract void insert_ushort(short x);  /**   * Insert the CORBA <code>wchar</code> into this <code>Any</code>   */  public abstract void insert_wchar(char x);  /**   * Insert the CORBA <code>wstring</code> into this <code>Any</code>   */  public abstract void insert_wstring(String x);  /**   * Read the value into this <code>Any</code> from the given input stream.   *   * @param input a CORBA stream to read from.   * @param type a TypeCode of the object being read.   *   * @throws org.omg.CORBA.MARSHAL if the given TypeCode does not match   * the TypeCode of the object, found in the stream.   */  public abstract void read_value(org.omg.CORBA.portable.InputStream input,                                  TypeCode type                                 )                           throws MARSHAL;  /**   * Set the type of the object, stored in this <code>Any</code>, to the   * given TypeCode. Clear the value.   *   * @param valueTypeCode the type of the object that is expected to be stored   * in this <code>any</code>.   */  public abstract void type(TypeCode valueTypeCode);  /**   * Returns the TypeCode of the object, stored in this <code>Any</code>   * @return the TypeCode   */  public abstract TypeCode type();  /**   * Writes out the value (without the typecode of the value), stored in   * this <code>Any</code>.   *   * @param output the CORBA stream to write into.   *   * @throws NullPointerException if the value of this <code>Any</code>   * has not been set.   */  public abstract void write_value(org.omg.CORBA.portable.OutputStream output);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人免费视频一区| 国产日韩精品视频一区| 亚洲五码中文字幕| 大陆成人av片| 国产精品久久久久三级| 91啪亚洲精品| 亚洲一区二区三区自拍| 欧美精品一卡两卡| 久久成人免费网站| 国产精品理伦片| 91麻豆精东视频| 亚洲午夜视频在线| 日韩一区二区三区观看| 国产成人高清视频| 亚洲女爱视频在线| 4438x成人网最大色成网站| 韩国av一区二区| 一区在线中文字幕| 欧美日韩二区三区| 国模无码大尺度一区二区三区| 亚洲欧洲日韩一区二区三区| 欧美精品自拍偷拍| 国产成人精品一区二| 一区二区三区不卡在线观看| 欧美一区二区精品| av在线不卡电影| 日韩精品成人一区二区在线| 欧美极品另类videosde| 欧美亚洲国产一区在线观看网站| 日韩二区三区四区| 国产精品久久久久影院亚瑟| 欧美三级中文字幕| 丁香婷婷综合五月| 三级不卡在线观看| 国产精品全国免费观看高清| 欧美人xxxx| 91亚洲精品乱码久久久久久蜜桃 | 青青草国产精品97视觉盛宴| 久久夜色精品一区| 欧美日韩国产在线观看| 国产sm精品调教视频网站| 午夜久久久久久久久久一区二区| 久久久久久久一区| 欧美电影在哪看比较好| av一区二区久久| 韩国av一区二区| 婷婷中文字幕综合| 亚洲精品国产高清久久伦理二区| 中文字幕精品在线不卡| 欧美在线播放高清精品| 岛国av在线一区| 国内欧美视频一区二区| 日韩av不卡在线观看| 亚洲男人的天堂一区二区| 久久亚洲影视婷婷| 日韩欧美一卡二卡| 欧美人体做爰大胆视频| 91福利在线导航| 成人福利电影精品一区二区在线观看| 激情五月婷婷综合| 日韩电影在线观看网站| 性欧美大战久久久久久久久| 亚洲精品中文字幕在线观看| 国产欧美日本一区二区三区| 337p日本欧洲亚洲大胆色噜噜| 欧美福利视频一区| 欧美日韩dvd在线观看| 欧美综合亚洲图片综合区| 波多野结衣视频一区| 懂色av一区二区在线播放| 国产精品一区二区久激情瑜伽| 久久国产精品露脸对白| 麻豆成人在线观看| 麻豆91免费观看| 狠狠色综合色综合网络| 精品一区二区三区久久久| 蜜桃av一区二区| 久草这里只有精品视频| 精品夜夜嗨av一区二区三区| 久久99九九99精品| 国产一区二区三区蝌蚪| 国产呦萝稀缺另类资源| 懂色av中文一区二区三区| 成人精品免费网站| 97久久精品人人澡人人爽| 91免费版pro下载短视频| 91国偷自产一区二区开放时间 | 久久无码av三级| 久久精品欧美一区二区三区不卡| 欧美国产日韩在线观看| 国产精品久久久99| 一区二区在线电影| 亚洲电影你懂得| 日本午夜精品一区二区三区电影| 日本在线不卡视频一二三区| 乱中年女人伦av一区二区| 国产精品一区在线观看乱码| 成人国产电影网| 在线免费观看成人短视频| 69堂国产成人免费视频| 久久综合狠狠综合久久激情| 国产精品视频免费| 一区二区三区中文字幕| 日韩中文字幕1| 韩国精品主播一区二区在线观看| 国产xxx精品视频大全| 91丨国产丨九色丨pron| 欧美猛男男办公室激情| 久久久久国产免费免费| 亚洲人成网站色在线观看| 午夜精品免费在线| 国产精品一区三区| 91福利精品第一导航| 欧美大片顶级少妇| 中文字幕字幕中文在线中不卡视频| 亚洲第一av色| 国产高清无密码一区二区三区| 91麻豆福利精品推荐| 91精品国产一区二区三区蜜臀| 久久久精品黄色| 午夜精品福利视频网站| 国产aⅴ综合色| 制服丝袜亚洲色图| 国产精品成人免费精品自在线观看| 亚洲国产cao| 成人aa视频在线观看| 91精品国产91久久久久久最新毛片| 国产视频一区在线播放| 无码av中文一区二区三区桃花岛| 国产精一品亚洲二区在线视频| 在线观看一区二区视频| 26uuu另类欧美亚洲曰本| 亚洲自拍偷拍欧美| 国产成人免费视频一区| 日韩一区二区中文字幕| 亚洲精品第一国产综合野| 国产精品一区二区x88av| 欧美日韩一区精品| 亚洲欧洲韩国日本视频 | 精品在线观看视频| 欧美三级资源在线| 亚洲人成精品久久久久| 国产剧情一区在线| 欧美tk—视频vk| 丝袜亚洲另类欧美综合| 91成人在线观看喷潮| 国产精品国产三级国产aⅴ中文| 久久国产精品99久久久久久老狼| 欧美视频第二页| 亚洲精品免费在线| 99视频热这里只有精品免费| 久久一留热品黄| 紧缚奴在线一区二区三区| 91.xcao| 亚洲线精品一区二区三区| 色综合天天天天做夜夜夜夜做| 国产校园另类小说区| 狠狠色伊人亚洲综合成人| 欧美日韩成人高清| 三级欧美韩日大片在线看| 欧美日韩在线免费视频| 亚洲国产日韩综合久久精品| 色婷婷av一区二区三区软件 | 色吧成人激情小说| 亚洲欧美一区二区在线观看| 丁香天五香天堂综合| 国产欧美日韩在线视频| 国产精品123| 国产三级精品视频| 成人午夜私人影院| 国产精品女上位| 成人性色生活片| 亚洲欧洲成人精品av97| 91在线丨porny丨国产| 亚洲人成网站影音先锋播放| 日本久久电影网| 亚洲成av人影院| 欧美一级国产精品| 狠狠色丁香久久婷婷综| 国产欧美一区二区精品性色超碰| 国产成人av影院| 亚洲乱码一区二区三区在线观看| 色婷婷久久久综合中文字幕| 亚洲一区在线观看视频| 欧美日本国产一区| 精品一区二区免费看| 国产清纯在线一区二区www| www.日韩在线| 亚洲一区二区av在线| 91麻豆精品国产91久久久使用方法 | 92精品国产成人观看免费| 尤物av一区二区| 欧美一区二区三区视频在线观看 | 在线视频观看一区| 日韩和欧美一区二区三区| 久久久噜噜噜久久人人看| 波多野结衣中文字幕一区| 夜夜精品视频一区二区| 日韩视频在线观看一区二区| 国产精品系列在线观看|