⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 typelibrary.java

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 JAVA
字号:
/* TypeLibrary.java --    Copyright (C) 2006  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 gnu.xml.validation.datatype;import java.util.HashMap;import java.util.Map;import org.relaxng.datatype.Datatype;import org.relaxng.datatype.DatatypeBuilder;import org.relaxng.datatype.DatatypeException;import org.relaxng.datatype.DatatypeLibrary;/** * Datatype library for XML Schema datatypes. * * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a> */public class TypeLibrary  implements DatatypeLibrary{    public static final SimpleType ANY_SIMPLE_TYPE = new AnySimpleType();  public static final SimpleType STRING = new StringType();  public static final SimpleType BOOLEAN = new BooleanType();  public static final SimpleType DECIMAL = new DecimalType();  public static final SimpleType FLOAT = new FloatType();  public static final SimpleType DOUBLE = new DoubleType();  public static final SimpleType DURATION = new DurationType();  public static final SimpleType DATE_TIME = new DateTimeType();  public static final SimpleType TIME = new TimeType();  public static final SimpleType DATE = new DateType();  public static final SimpleType G_YEAR_MONTH = new GYearMonthType();  public static final SimpleType G_YEAR = new GYearType();  public static final SimpleType G_MONTH_DAY = new GMonthDayType();  public static final SimpleType G_DAY = new GDayType();  public static final SimpleType G_MONTH = new GMonthType();  public static final SimpleType HEX_BINARY = new HexBinaryType();  public static final SimpleType BASE64_BINARY = new Base64BinaryType();  public static final SimpleType ANY_URI = new AnyURIType();  public static final SimpleType QNAME = new QNameType();  public static final SimpleType NOTATION = new NotationType();  public static final SimpleType NORMALIZED_STRING = new NormalizedStringType();  public static final SimpleType TOKEN = new TokenType();  public static final SimpleType LANGUAGE = new LanguageType();  public static final SimpleType NMTOKEN = new NMTokenType();  public static final SimpleType NMTOKENS = new NMTokensType();  public static final SimpleType NAME = new NameType();  public static final SimpleType NCNAME = new NCNameType();  public static final SimpleType ID = new IDType();  public static final SimpleType IDREF = new IDRefType();  public static final SimpleType IDREFS = new IDRefsType();  public static final SimpleType ENTITY = new EntityType();  public static final SimpleType ENTITIES = new EntitiesType();  public static final SimpleType INTEGER = new IntegerType();  public static final SimpleType NON_POSITIVE_INTEGER = new NonPositiveIntegerType();  public static final SimpleType NEGATIVE_INTEGER = new NegativeIntegerType();  public static final SimpleType LONG = new LongType();  public static final SimpleType INT = new IntType();  public static final SimpleType SHORT = new ShortType();  public static final SimpleType BYTE = new ByteType();  public static final SimpleType NON_NEGATIVE_INTEGER = new NonNegativeIntegerType();  public static final SimpleType UNSIGNED_LONG = new UnsignedLongType();  public static final SimpleType UNSIGNED_INT = new UnsignedIntType();  public static final SimpleType UNSIGNED_SHORT = new UnsignedShortType();  public static final SimpleType UNSIGNED_BYTE = new UnsignedByteType();  public static final SimpleType POSITIVE_INTEGER = new PositiveIntegerType();  private static Map byName;  static  {    byName = new HashMap();    byName.put("anySimpleType", ANY_SIMPLE_TYPE);    byName.put("string", STRING);    byName.put("boolean", BOOLEAN);    byName.put("decimal", DECIMAL);    byName.put("float", FLOAT);    byName.put("double", DOUBLE);    byName.put("duration", DURATION);    byName.put("dateTime", DATE_TIME);    byName.put("time", TIME);    byName.put("date", DATE);    byName.put("gYearMonth", G_YEAR_MONTH);    byName.put("gYear", G_YEAR);    byName.put("gMonthDay", G_MONTH_DAY);    byName.put("gDay", G_DAY);    byName.put("gMonth",G_MONTH);    byName.put("hexBinary", HEX_BINARY);    byName.put("base64Binary", BASE64_BINARY);    byName.put("anyURI", ANY_URI);    byName.put("QName", QNAME);    byName.put("NOTATION", NOTATION);    byName.put("normalizedString", NORMALIZED_STRING);    byName.put("token", TOKEN);    byName.put("language", LANGUAGE);    byName.put("NMTOKEN", NMTOKEN);    byName.put("NMTOKENS", NMTOKENS);    byName.put("Name", NAME);    byName.put("NCName", NCNAME);    byName.put("ID", ID);    byName.put("IDREF", IDREF);    byName.put("IDREFS", IDREFS);    byName.put("ENTITY", ENTITY);    byName.put("ENTITIES", ENTITIES);    byName.put("integer", INTEGER);    byName.put("nonPositiveInteger", NON_POSITIVE_INTEGER);    byName.put("negativeInteger", NEGATIVE_INTEGER);    byName.put("long", LONG);    byName.put("int", INT);    byName.put("short", SHORT);    byName.put("byte", BYTE);    byName.put("nonNegativeInteger", NON_NEGATIVE_INTEGER);    byName.put("unsignedLong", UNSIGNED_LONG);    byName.put("unsignedInt", UNSIGNED_INT);    byName.put("unsignedShort", UNSIGNED_SHORT);    byName.put("unsignedByte", UNSIGNED_BYTE);    byName.put("positiveInteger", POSITIVE_INTEGER);  }  public DatatypeBuilder createDatatypeBuilder(String baseTypeLocalName)    throws DatatypeException  {    SimpleType type = (SimpleType) byName.get(baseTypeLocalName);    if (type == null)      throw new DatatypeException("Unknown type name: " + baseTypeLocalName);    return new TypeBuilder(type);  }  public Datatype createDatatype(String typeLocalName)    throws DatatypeException  {    SimpleType type = (SimpleType) byName.get(typeLocalName);    if (type == null)      throw new DatatypeException("Unknown type name: " + typeLocalName);    return type;  }  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -