com.ctc.wstx.api.ReaderConfig._hasConfigFlag()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(63)

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

ReaderConfig._hasConfigFlag介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

/**
 * Method similar to {@link #_hasConfigFlag}, but that will only
 * return true if in addition to being set, flag has been explicitly
 * modified (i.e. setProperty has been called to modify it)
 */
protected boolean _hasExplicitConfigFlag(int flag) {
  return _hasConfigFlag(flag) && (mConfigFlagMods & flag) != 0;
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willReportCData() {
  return _hasConfigFlag(CFG_REPORT_CDATA);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willCoalesceText() {
  return _hasConfigFlag(CFG_COALESCE_TEXT);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willCacheDTDs() {
  return _hasConfigFlag(CFG_CACHE_DTDS);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willDoXmlIdTyping() {
  return _hasConfigFlag(CFG_XMLID_TYPING);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willDoXmlIdUniqChecks() {
  return _hasConfigFlag(CFG_XMLID_UNIQ_CHECKS);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willSupportExternalEntities() {
  return _hasConfigFlag(CFG_SUPPORT_EXTERNAL_ENTITIES);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willParseLazily() {
  return _hasConfigFlag(CFG_LAZY_PARSING);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willPreserveLocation() {
  return _hasConfigFlag(CFG_PRESERVE_LOCATION);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willCacheDTDsByPublicId() {
  return _hasConfigFlag(CFG_CACHE_DTDS_BY_PUBLIC_ID);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willSupportDTDPP() {
  return _hasConfigFlag(CFG_SUPPORT_DTDPP);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willTreatCharRefsAsEnts() {
  return _hasConfigFlag(CFG_TREAT_CHAR_REFS_AS_ENTS);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willReplaceEntityRefs() {
  return _hasConfigFlag(CFG_REPLACE_ENTITY_REFS);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willValidateWithDTD() {
  return _hasConfigFlag(CFG_VALIDATE_AGAINST_DTD);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willInternNames() {
  return _hasConfigFlag(CFG_INTERN_NAMES);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willAutoCloseInput() {
  return _hasConfigFlag(CFG_AUTO_CLOSE_INPUT);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willSupportNamespaces() {
  return _hasConfigFlag(CFG_NAMESPACE_AWARE);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willSupportDTDs() {
  return _hasConfigFlag(CFG_SUPPORT_DTD);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willInternNsURIs() {
  return _hasConfigFlag(CFG_INTERN_NS_URIS);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

public boolean willReportPrologWhitespace() {
  return _hasConfigFlag(CFG_REPORT_PROLOG_WS);
}

相关文章

微信公众号

最新文章

更多

ReaderConfig类方法