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

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

?? name.java

?? kaffe Java 解釋器語言,源碼,Java的子集系統,開放源代碼
?? JAVA
字號:
/* Name.java -- Name build up from different components   Copyright (C) 2000, 2001 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., 59 Temple Place, Suite 330, Boston, MA02111-1307 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 javax.naming;import java.util.Enumeration;import java.io.Serializable;/** * Interface descriping a name build up from different components. * The components are represented as <code>String</code>s which are * ordered from most significant to least significant. There are methods to * get the number of components. Methods to get a particular component or group * of components. Components can be added as <code>String</code>s or * <code>Name</code>s and a component can be removed from any position in the * <code>Name</code>. * A <code>Name</code> can be compared to another <code>Name</code> and it can * be checked if a particular <code>Name</code> starts or ends with the same * components as another <code>Name</code>. Finally <code>Name</code>s can be * serialized and cloned. * <p> * Since <code>Name</code>s can be empty (have no components) methods that * return a <code>Name</code> will never return <code>null</code>. * * @since 1.3 * @author Anthony Green (green@redhat.com) * @author Mark Wielaard (mark@klomp.org) */public interface Name extends Cloneable, Serializable{  long serialVersionUID = -3617482732056931635L;  /**   * Returns the number of components of this <code>Name</code>.   * The returned number can be zero.   */  int size();  /**   * Returns <code>true</code> if the number of components of this   * <code>Name</code> is zero, <code>false</code> otherwise.   */  boolean isEmpty();  /**   * Returns a non-null (but possibly empty) <code>Enumeration</code> of the   * components of the <code>Name</code> as <code>String</code>s.   */  Enumeration getAll();  /**   * Gets the component at the given index.   *   * @exception ArrayIndexOutOfBoundsException if the given index is smaller   *            then zero or greater then or equal to <code>size()</code>.   */  String get(int i);  /**   * Returns the components till the given index as a <code>Name</code>.   * The returned <code>Name</code> can be modified without changing the   * original.   *   * @exception ArrayIndexOutOfBoundsException if the given index is smaller   *            then zero or greater then or equal to <code>size()</code>.   */  Name getPrefix(int i);  /**   * Returns the components from the given index till the end as a   * <code>Name</code>.   * The returned <code>Name</code> can be modified without changing the   * original.   *   * @exception ArrayIndexOutOfBoundsException if the given index is smaller   *            then zero or greater then or equal to <code>size()</code>.   */  Name getSuffix(int i);  /**   * Adds the given <code>String</code> component to the end of this   * <code>Name</code>. The method modifies the current <code>Name</code> and   * then returns it.   *   * @exception InvalidNameException if the given <code>String</code> is not a   *            valid component for this <code>Name</code>.   */  Name add(String comp) throws InvalidNameException;  /**   * Inserts the given <code>String</code> component to this <code>Name</code>   * at the given index. The method modifies the current <code>Name</code> and   * then returns it.   *   * @exception ArrayIndexOutOfBoundsException if the given index is smaller   *            then zero or greater then or equal to <code>size()</code>.   * @exception InvalidNameException if the given <code>String</code> is not a   *            valid component for this <code>Name</code>.   */  Name add(int posn, String comp) throws InvalidNameException;  /**   * Adds all the components of the given <code>Name</code> to the end of this   * <code>Name</code>. The method modifies the current <code>Name</code> and   * then returns it.   *   * @exception InvalidNameException if any of the given components is not a   *            valid component for this <code>Name</code>.   */  Name addAll(Name suffix) throws InvalidNameException;  /**   * Inserts all the components of the given <code>Name</code> to this   * <code>Name</code> at the given index. The method modifies the current   * <code>Name</code> and then returns it.   *   * @exception ArrayIndexOutOfBoundsException if the given index is smaller   *            then zero or greater then or equal to <code>size()</code>.   * @exception InvalidNameException if any of the given components is not a   *            valid component for this <code>Name</code>.   */  Name addAll(int posn, Name n) throws InvalidNameException;  /**   * Removes the component at the given index from this <code>Name</code>.   * The method modifies the current <code>Name</code> and then returns it.   *   * @exception InvalidNameException if the given <code>String</code> is not a   *            valid component for this <code>Name</code>.   */  Object remove(int posn) throws InvalidNameException;  /**   * Returns <code>true</code> if this <code>Name</code> starts with the   * components of the given <code>Name</code>, <code>false</code> otherwise.   */  boolean startsWith(Name name);  /**   * Returns <code>true</code> if this <code>Name</code> ends with the   * components of the given <code>Name</code>, <code>false</code> otherwise.   */  boolean endsWith(Name name);  /**   * Compares the given object to this <code>Name</code>.   * Returns a negative value if the given <code>Object</code> is smaller then   * this <code>Name</code>, a positive value if the <code>Object</code> is   * bigger, and zero if the are equal. If the <code>Object</code> is not of   * a class that can be compared to the class of this <code>Name</code> then   * a <code>ClassCastException</code> is thrown. Note that it is not   * guaranteed that <code>Name</code>s implemented in different classes can   * be compared. The definition of smaller, bigger and equal is up to the   * actual implementing class.   */  int compareTo(Object obj);  /**   * Returns a clone of this <code>Name</code>. It will be a deep copy of   * all the components of the <code>Name</code> so that changes to components   * of the components does not change the component in this <code>Name</code>.   */  Object clone();}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产乱码久久久久久图片| 日韩一区二区三区在线观看| 久久99久久精品| 男女男精品视频网| 日本美女一区二区| 青青草一区二区三区| 久久99精品久久久| 精品一区二区三区在线播放| 六月丁香综合在线视频| 久久精品国产99国产| 韩国av一区二区三区| 国产一区二区精品久久91| 国产一区不卡精品| av激情成人网| 欧美日韩精品欧美日韩精品| 欧美美女激情18p| 欧美精品一区二| 日韩视频在线观看一区二区| 欧美成人video| 国产精品―色哟哟| 亚洲男人的天堂在线观看| 亚洲一区在线视频| 激情综合网天天干| av一区二区三区黑人| 欧美日韩一级黄| 久久一区二区视频| 亚洲激情综合网| 男男成人高潮片免费网站| 国产成人三级在线观看| 色综合网站在线| 精品久久久久久久久久久久久久久| 久久久久久久久久久电影| 亚洲免费毛片网站| 久久97超碰国产精品超碰| 9色porny自拍视频一区二区| 欧美色视频在线| 国产欧美中文在线| 亚洲国产精品自拍| 高清不卡在线观看| 欧美疯狂性受xxxxx喷水图片| 国产清纯美女被跳蛋高潮一区二区久久w| 自拍偷拍亚洲欧美日韩| 麻豆精品新av中文字幕| 色偷偷一区二区三区| 精品欧美一区二区在线观看| 亚洲精品ww久久久久久p站| 国产精品一色哟哟哟| 欧美日韩国产三级| 中文字幕一区二区三区精华液| 男男视频亚洲欧美| 欧美性生活久久| 国产精品麻豆视频| 韩国精品久久久| 欧美一级免费观看| 夜夜精品视频一区二区| 成人小视频在线| www精品美女久久久tv| 天堂在线一区二区| 色八戒一区二区三区| 日本一区二区动态图| 久久福利资源站| 欧美性猛片xxxx免费看久爱| 中文字幕一区二区三区蜜月| 国产成人精品在线看| 精品美女在线观看| 日韩和欧美一区二区三区| 欧美最新大片在线看| 亚洲欧洲日产国产综合网| 国产传媒久久文化传媒| 久久综合色之久久综合| 理论电影国产精品| 精品日韩一区二区| 久久 天天综合| 精品国产一区二区三区久久久蜜月| 丝袜亚洲另类欧美| 777精品伊人久久久久大香线蕉| 亚洲精品免费一二三区| 日本道精品一区二区三区| 亚洲激情校园春色| 在线观看区一区二| 亚洲午夜久久久| 欧美嫩在线观看| 老司机精品视频一区二区三区| 欧美精品免费视频| 人人狠狠综合久久亚洲| 精品国产污污免费网站入口 | 欧美本精品男人aⅴ天堂| 日产国产欧美视频一区精品| 欧美日韩精品福利| 久久99国产精品麻豆| 国产网红主播福利一区二区| 国产传媒久久文化传媒| 亚洲美女免费在线| 欧美精品日韩综合在线| 精品午夜一区二区三区在线观看| 久久精品视频网| 一本一道综合狠狠老| 亚洲午夜在线观看视频在线| 91精品国产综合久久精品| 国产一区二区福利| 亚洲天堂av老司机| 538prom精品视频线放| 韩国av一区二区| 亚洲蜜臀av乱码久久精品| 欧美蜜桃一区二区三区| 国产乱码精品一品二品| 亚洲女人****多毛耸耸8| 日韩一区二区精品在线观看| 国产传媒欧美日韩成人| 亚洲一区二区在线免费观看视频| 日韩视频国产视频| 91在线porny国产在线看| 久久精品国产一区二区三区免费看| 国产亚洲成年网址在线观看| 在线亚洲精品福利网址导航| 激情五月婷婷综合| 一区二区三区四区激情| 久久伊99综合婷婷久久伊| 在线看国产一区| 国产福利视频一区二区三区| 亚洲一区二区三区四区在线| 国产喂奶挤奶一区二区三区| 91.xcao| 99精品国产99久久久久久白柏 | 亚洲欧洲成人精品av97| 欧美一区二区视频在线观看2020 | 看国产成人h片视频| 一区二区日韩电影| 久久久亚洲精品一区二区三区 | 日韩欧美成人激情| 色综合天天综合色综合av| 国产一级精品在线| 午夜成人免费视频| 亚洲精品国产视频| 中文字幕精品在线不卡| 精品国产一区二区三区不卡| 欧美日韩一二三| 91麻豆免费看| av中文字幕亚洲| 国产aⅴ综合色| 国产一级精品在线| 免费观看在线综合色| 午夜天堂影视香蕉久久| 亚洲精品美腿丝袜| 亚洲视频免费在线观看| 国产精品久久久久三级| 久久美女艺术照精彩视频福利播放 | 精品系列免费在线观看| 日韩av电影天堂| 天堂蜜桃91精品| 五月综合激情网| 日韩专区一卡二卡| 日本aⅴ亚洲精品中文乱码| 日韩黄色一级片| 蜜臀av亚洲一区中文字幕| 日本不卡1234视频| 久久99国产精品成人| 国产自产v一区二区三区c| 国模大尺度一区二区三区| 精东粉嫩av免费一区二区三区| 久久精品国产77777蜜臀| 韩国v欧美v日本v亚洲v| 国产米奇在线777精品观看| 成人在线一区二区三区| 99re成人精品视频| 91久久精品日日躁夜夜躁欧美| 在线精品国精品国产尤物884a| 欧美日韩一区二区三区高清| 67194成人在线观看| 精品国产乱码久久| 国产精品久久午夜夜伦鲁鲁| 国产精品成人网| 艳妇臀荡乳欲伦亚洲一区| 爽爽淫人综合网网站| 黄页视频在线91| 91香蕉国产在线观看软件| 欧美日韩二区三区| 久久久久久亚洲综合影院红桃| 中文字幕va一区二区三区| 亚洲成人免费看| 国产精品18久久久久久久久| 97久久超碰精品国产| 日韩欧美中文字幕公布| 国产精品毛片久久久久久| 午夜av一区二区三区| 国产在线播放一区| 欧美在线不卡视频| 国产亚洲综合性久久久影院| 亚洲品质自拍视频| 久久99久久99| 欧美午夜电影网| 久久久激情视频| 日韩影院精彩在线| 91影视在线播放| 精品久久国产97色综合| 亚洲男人的天堂网| 国产一区二区三区蝌蚪| 欧美日本韩国一区| 亚洲欧洲另类国产综合| 久久国产视频网|