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

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

?? level.java

?? gcc的組建
?? JAVA
字號:
/* Level.java -- a class for indicating logging levels   Copyright (C) 2002, 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 java.util.logging;import java.io.Serializable;import java.util.ResourceBundle;/** * A class for indicating logging levels.  A number of commonly used * levels is pre-defined (such as <code>java.util.logging.Level.INFO</code>), * and applications should utilize those whenever possible.  For specialized * purposes, however, applications can sub-class Level in order to define * custom logging levels. * * @author Sascha Brawer (brawer@acm.org) */public class Level implements Serializable{  /* The integer values are the same as in the Sun J2SE 1.4.   * They have been obtained with a test program. In J2SE 1.4.1,   * Sun has amended the API documentation; these values are now   * publicly documented.   */  /**   * The <code>OFF</code> level is used as a threshold for filtering   * log records, meaning that no message should be logged.   *   * @see Logger#setLevel(java.util.logging.Level)   */  public static final Level OFF = new Level ("OFF", Integer.MAX_VALUE);  /**   * Log records whose level is <code>SEVERE</code> indicate a serious   * failure that prevents normal program execution.  Messages at this   * level should be understandable to an inexperienced, non-technical   * end user.  Ideally, they explain in simple words what actions the   * user can take in order to resolve the problem.   */  public static final Level SEVERE = new Level ("SEVERE", 1000);  /**   * Log records whose level is <code>WARNING</code> indicate a   * potential problem that does not prevent normal program execution.   * Messages at this level should be understandable to an   * inexperienced, non-technical end user.  Ideally, they explain in   * simple words what actions the user can take in order to resolve   * the problem.   */  public static final Level WARNING = new Level ("WARNING", 900);  /**   * Log records whose level is <code>INFO</code> are used in purely   * informational situations that do not constitute serious errors or   * potential problems. In the default logging configuration, INFO   * messages will be written to the system console.  For this reason,   * the INFO level should be used only for messages that are   * important to end users and system administrators.  Messages at   * this level should be understandable to an inexperienced,   * non-technical user.   */  public static final Level INFO = new Level ("INFO", 800);  /**   * Log records whose level is <code>CONFIG</code> are used for   * describing the static configuration, for example the windowing   * environment, the operating system version, etc.   */  public static final Level CONFIG = new Level ("CONFIG", 700);  /**   * Log records whose level is <code>FINE</code> are typically used   * for messages that are relevant for developers using   * the component generating log messages.  Examples include minor,   * recoverable failures, or possible inefficiencies.   */  public static final Level FINE = new Level ("FINE", 500);  /**   * Log records whose level is <code>FINER</code> are intended for   * rather detailed tracing, for example entering a method, returning   * from a method, or throwing an exception.   */  public static final Level FINER = new Level ("FINER", 400);  /**   * Log records whose level is <code>FINEST</code> are used for   * highly detailed tracing, for example to indicate that a certain   * point inside the body of a method has been reached.   */  public static final Level FINEST = new Level ("FINEST", 300);  /**   * The <code>ALL</code> level is used as a threshold for filtering   * log records, meaning that every message should be logged.   *   * @see Logger#setLevel(java.util.logging.Level)   */  public static final Level ALL = new Level ("ALL", Integer.MIN_VALUE);  private static final Level[] knownLevels = {    ALL, FINEST, FINER, FINE, CONFIG, INFO, WARNING, SEVERE, OFF  };  /**   * The name of the Level without localizing it, for example   * "WARNING".   */  private String name;  /**   * The integer value of this <code>Level</code>.   */  private int value;  /**   * The name of the resource bundle used for localizing the level   * name, or <code>null</code> if the name does not undergo   * localization.   */  private String resourceBundleName;  /**   * Creates a logging level given a name and an integer value.   * It rarely is necessary to create custom levels,   * as most applications should be well served with one of the   * standard levels such as <code>Level.CONFIG</code>,   * <code>Level.INFO</code>, or <code>Level.FINE</code>.   *   * @param name the name of the level.   *   * @param value the integer value of the level.  Please note   *     that the Java<small><sup>TM</sup></small>   *     Logging API does not specify integer   *	 values for standard levels (such as   *	 Level.FINE).  Therefore, a custom   *	 level should pass an integer value that   *	 is calculated at run-time, e.g.   *	 <code>(Level.FINE.intValue() + Level.CONFIG.intValue())   *	 / 2</code> for a level between FINE and CONFIG.   */  protected Level(String name, int value)  {    this(name, value, null);  }  /**   * Create a logging level given a name, an integer value and a name   * of a resource bundle for localizing the level name.  It rarely   * is necessary to create custom levels, as most applications   * should be well served with one of the standard levels such as   * <code>Level.CONFIG</code>, <code>Level.INFO</code>, or   * <code>Level.FINE</code>.   *   * @param name the name of the level.   *   * @param value the integer value of the level.  Please note   *        that the Java<small><sup>TM</sup></small>   *	    Logging API does not specify integer   *	    values for standard levels (such as   *	    Level.FINE).  Therefore, a custom   *	    level should pass an integer value that   *	    is calculated at run-time, e.g.   *	    <code>(Level.FINE.intValue() + Level.CONFIG.intValue())   *	    / 2</code> for a level between FINE and CONFIG.   *   * @param resourceBundleName the name of a resource bundle   *       for localizing the level name, or <code>null</code>   *       if the name does not need to be localized.   */  protected Level(String name, int value, String resourceBundleName)  {    this.name = name;    this.value = value;    this.resourceBundleName = resourceBundleName;  }  static final long serialVersionUID = -8176160795706313070L;  /**   * Checks whether the Level has the same intValue as one of the   * pre-defined levels.  If so, the pre-defined level object is   * returned.   *   * <br/>Since the resource bundle name is not taken into   * consideration, it is possible to resolve Level objects that have   * been de-serialized by another implementation, even if the other   * implementation uses a different resource bundle for localizing   * the names of pre-defined levels.   */  private Object readResolve()  {    for (int i = 0; i < knownLevels.length; i++)      if (value == knownLevels[i].intValue())	return knownLevels[i];    return this;  }  /**   * Returns the name of the resource bundle used for localizing the   * level name.   *   * @return the name of the resource bundle used for localizing the   * level name, or <code>null</code> if the name does not undergo   * localization.   */  public String getResourceBundleName()  {    return resourceBundleName;  }  /**   * Returns the name of the Level without localizing it, for example   * "WARNING".   */  public String getName()  {    return name;  }  /**   * Returns the name of the Level after localizing it, for example   * "WARNUNG".   */  public String getLocalizedName()  {    String localizedName = null;    if (resourceBundleName != null)    {      try      {        ResourceBundle b = ResourceBundle.getBundle(resourceBundleName);	localizedName = b.getString(name);      }      catch (Exception _)      {      }    }    if (localizedName != null)      return localizedName;    else      return name;  }  /**   * Returns the name of the Level without localizing it, for example   * "WARNING".   */  public final String toString()  {    return getName();  }  /**   * Returns the integer value of the Level.   */  public final int intValue()  {    return value;  }  /**   * Returns one of the standard Levels given either its name or its   * integer value.  Custom subclasses of Level will not be returned   * by this method.   *   * @throws IllegalArgumentException if <code>name</code> is neither   * the name nor the integer value of one of the pre-defined standard   * logging levels.   *   * @throws NullPointerException if <code>name</code> is null.   *   */  public static Level parse(String name)    throws IllegalArgumentException  {    /* This will throw a NullPointerException if name is null,     * as required by the API specification.     */    name = name.intern();    for (int i = 0; i < knownLevels.length; i++)    {      if (name == knownLevels[i].name)	return knownLevels[i];    }        try    {      int num = Integer.parseInt(name);      for (int i = 0; i < knownLevels.length; i++)	if (num == knownLevels[i].value)	  return knownLevels[i];    }    catch (NumberFormatException _)    {    }    String msg = "Not the name of a standard logging level: \"" + name + "\"";    throw new IllegalArgumentException(msg);  }  /**   * Checks whether this Level's integer value is equal to that of   * another object.   *   * @return <code>true</code> if <code>other</code> is an instance of   *	 <code>java.util.logging.Level</code> and has the same integer   * value, <code>false</code> otherwise.   */  public boolean equals(Object other)  {    if (!(other instanceof Level))      return false;    return value == ((Level) other).value;  }  /**   * Returns a hash code for this Level which is based on its numeric   * value.   */  public int hashCode()  {    return value;  }    /**   * Determines whether or not this Level is one of the standard   * levels specified in the Logging API.   *   * <p>This method is package-private because it is not part   * of the logging API specification.  However, an XMLFormatter   * is supposed to emit the numeric value for a custom log   * level, but the name for a pre-defined level. It seems   * cleaner to put this method to Level than to write some   * procedural code for XMLFormatter.   *   * @return <code>true</code> if this Level is a standard level,   *         <code>false</code> otherwise.   */  final boolean isStandardLevel()  {    for (int i = 0; i < knownLevels.length; i++)      if (knownLevels[i] == this)	return true;    return false;  }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美老人xxxx18| 天堂久久久久va久久久久| 欧美区一区二区三区| 99精品欧美一区二区蜜桃免费 | 精品国产伦一区二区三区观看体验| 91国产视频在线观看| 日本伦理一区二区| 色狠狠色狠狠综合| 欧美三片在线视频观看| 欧美日韩成人综合天天影院 | 亚洲成av人片| 亚洲一二三四在线观看| 午夜在线成人av| 丝袜美腿亚洲综合| 老司机免费视频一区二区| 久久精品国产99| 国产成人av在线影院| 成人精品视频.| 在线视频观看一区| 这里只有精品视频在线观看| 欧美成人精品二区三区99精品| www久久久久| 久久久久久**毛片大全| 国产精品久久久久9999吃药| 亚洲欧美一区二区在线观看| 亚洲成人午夜电影| 久久精品国产色蜜蜜麻豆| 国产宾馆实践打屁股91| 一本一道久久a久久精品| 91.麻豆视频| 国产亚洲精品福利| 一区二区成人在线观看| 激情av综合网| 91女人视频在线观看| 欧美一级高清大全免费观看| 日本一区二区成人| 日日夜夜精品视频天天综合网| 国产精品自在欧美一区| 欧美午夜在线观看| 久久日一线二线三线suv| 亚洲一区免费视频| 国产寡妇亲子伦一区二区| 在线精品视频小说1| 亚洲精品一区二区三区香蕉| 一区二区欧美国产| 国产精品一级片| 在线不卡a资源高清| 亚洲欧美中日韩| 久久av资源网| 欧美日本不卡视频| 国产精品福利电影一区二区三区四区| 午夜精品国产更新| 99麻豆久久久国产精品免费| 日韩精品一区二区三区三区免费| 亚洲欧洲国产日本综合| 国产一区二区三区四区五区美女 | 欧美人xxxx| 最新不卡av在线| 国产制服丝袜一区| 欧美高清一级片在线| 亚洲美女在线国产| av中文字幕亚洲| 日本一区二区成人| 狠狠色丁香九九婷婷综合五月| 欧美美女一区二区在线观看| 亚洲一区中文在线| 91看片淫黄大片一级| 亚洲欧洲三级电影| av亚洲精华国产精华精华 | 久久精品夜色噜噜亚洲aⅴ| 日本系列欧美系列| 制服丝袜亚洲精品中文字幕| 亚洲国产欧美日韩另类综合| 91麻豆精品一区二区三区| 国产精品成人网| kk眼镜猥琐国模调教系列一区二区| 国产婷婷色一区二区三区四区| 韩国女主播成人在线| 欧美精品一区二区三区蜜桃视频| 蜜臀av在线播放一区二区三区| 制服.丝袜.亚洲.另类.中文| 日韩精彩视频在线观看| 欧美一区二区播放| 捆绑调教美女网站视频一区| 久久综合狠狠综合久久综合88| 捆绑紧缚一区二区三区视频| 2023国产精品| 高清不卡一二三区| 亚洲女子a中天字幕| 91久久香蕉国产日韩欧美9色| 亚洲综合小说图片| 5566中文字幕一区二区电影| 老司机一区二区| 国产欧美精品区一区二区三区 | av一区二区不卡| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 91麻豆免费在线观看| 亚洲一区二区三区三| 欧美日韩国产首页| 国产自产v一区二区三区c| 国产精品免费久久久久| 欧美午夜精品一区| 老司机精品视频在线| 中文字幕五月欧美| 欧美日韩国产欧美日美国产精品| 日本va欧美va瓶| 国产丝袜美腿一区二区三区| 色婷婷综合久色| 久久不见久久见免费视频7| 一区视频在线播放| 91精品国产福利在线观看| 丁香六月综合激情| 五月综合激情婷婷六月色窝| 欧美经典一区二区三区| 欧美色窝79yyyycom| 国产精品一区二区在线观看网站| 中文字幕在线不卡一区 | 九九国产精品视频| 亚洲日本韩国一区| 久久综合国产精品| 欧美影视一区二区三区| 国产精品夜夜嗨| 日本成人在线电影网| 国产精品短视频| 日韩欧美激情一区| 精品视频色一区| 成人a免费在线看| 极品美女销魂一区二区三区| 亚洲在线成人精品| 欧美激情资源网| 日韩女优视频免费观看| 欧美怡红院视频| 色综合网色综合| 国产一区二区三区精品欧美日韩一区二区三区 | 国产精品久99| 久久一留热品黄| 欧美一区二区三区男人的天堂| 91蝌蚪国产九色| 99久久久精品| 成人午夜免费av| 国产成人精品1024| 精品一区二区三区在线观看国产| 亚洲成人av电影在线| 一区二区三区日韩欧美| 国产精品免费aⅴ片在线观看| 久久伊99综合婷婷久久伊| 欧美成人女星排名| 欧美一级专区免费大片| 8v天堂国产在线一区二区| 日本电影亚洲天堂一区| 91麻豆swag| 色94色欧美sute亚洲线路一久| 99re在线视频这里只有精品| 成人少妇影院yyyy| av激情成人网| 色婷婷综合久久久久中文| 色综合天天综合色综合av| 色噜噜狠狠成人中文综合| 色婷婷综合激情| 欧美视频在线观看一区| 欧美福利视频一区| 日韩一区二区三区视频在线观看| 91精品国模一区二区三区| 欧美一级欧美三级在线观看| 日韩视频免费观看高清完整版 | 不卡的av在线播放| www.av亚洲| 欧美午夜一区二区三区| 欧美精品日日鲁夜夜添| 精品少妇一区二区三区在线播放 | 国产精品视频线看| 国产精品国产三级国产a| 亚洲精品视频免费看| 亚洲一区二区三区自拍| 免费亚洲电影在线| 国产精品91一区二区| 91网站视频在线观看| 欧美老女人第四色| 久久色成人在线| 一区二区三区精品在线观看| 午夜精品123| 国产成人自拍网| 色噜噜狠狠一区二区三区果冻| 91精品国产综合久久精品| 国产视频一区二区在线| 一级做a爱片久久| 久久国产乱子精品免费女| 国产不卡高清在线观看视频| 在线观看亚洲a| 精品国产欧美一区二区| 亚洲欧美日本韩国| 久久国产精品色| 97精品久久久久中文字幕| 欧美电影影音先锋| 国产精品对白交换视频| 美国精品在线观看| 欧洲av在线精品| 国产欧美一区二区三区鸳鸯浴 | 精品亚洲成a人| 日本韩国欧美一区二区三区|