org.apache.xmlbeans.SchemaTypeLoader.newInstance()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(105)

本文整理了Java中org.apache.xmlbeans.SchemaTypeLoader.newInstance()方法的一些代码示例,展示了SchemaTypeLoader.newInstance()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SchemaTypeLoader.newInstance()方法的具体详情如下:
包路径:org.apache.xmlbeans.SchemaTypeLoader
类名称:SchemaTypeLoader
方法名:newInstance

SchemaTypeLoader.newInstance介绍

[英]Creates an instance of the given type.
[中]创建给定类型的实例。

代码示例

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/**
 * Creates a new, completely empty instance.
 */ 
public static XmlObject newInstance ( ) {
 return XmlBeans.getContextTypeLoader().newInstance( null, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlGDay} */
public static XmlGDay newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlGDay) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlByte} */
public static XmlByte newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlByte) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlToken} */
public static XmlToken newInstance() {
 return (XmlToken) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlToken} */
public static XmlToken newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlToken) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlNOTATION} */
public static XmlNOTATION newInstance() {
 return (XmlNOTATION) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlNMTOKENS} */
public static XmlNMTOKENS newInstance() {
 return (XmlNMTOKENS) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlNMTOKENS} */
public static XmlNMTOKENS newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlNMTOKENS) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlDecimal} */
public static XmlDecimal newInstance() {
 return (XmlDecimal) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlString} */
public static XmlString newInstance() {
 return (XmlString) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlString} */
public static XmlString newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlString) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlIDREFS} */
public static XmlIDREFS newInstance() {
 return (XmlIDREFS) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlENTITIES} */
public static XmlENTITIES newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlENTITIES) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlNMTOKEN} */
public static XmlNMTOKEN newInstance() {
 return (XmlNMTOKEN) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlNonPositiveInteger} */
public static XmlNonPositiveInteger newInstance() {
 return (XmlNonPositiveInteger) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlInt} */
public static XmlInt newInstance() {
 return (XmlInt) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlUnsignedByte} */
public static XmlUnsignedByte newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlUnsignedByte) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlBase64Binary} */
public static XmlBase64Binary newInstance() {
 return (XmlBase64Binary) XmlBeans.getContextTypeLoader().newInstance( type, null ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlBase64Binary} */
public static XmlBase64Binary newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlBase64Binary) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

/** Creates an empty instance of {@link XmlName} */
public static XmlName newInstance(org.apache.xmlbeans.XmlOptions options) {
 return (XmlName) XmlBeans.getContextTypeLoader().newInstance( type, options ); }

相关文章

微信公众号

最新文章

更多