org.w3c.dom.traversal.NodeFilter#SHOW_ENTITY_REFERENCE源码实例Demo

下面列出了org.w3c.dom.traversal.NodeFilter#SHOW_ENTITY_REFERENCE 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: htmlunit   文件: DomTreeWalker.java
/**
 * Given a {@link Node}, return the appropriate constant for whatToShow.
 *
 * @param node the node
 * @return the whatToShow constant for the type of specified node
 */
static int getFlagForNode(final Node node) {
    switch (node.getNodeType()) {
        case Node.ELEMENT_NODE:
            return NodeFilter.SHOW_ELEMENT;
        case Node.ATTRIBUTE_NODE:
            return NodeFilter.SHOW_ATTRIBUTE;
        case Node.TEXT_NODE:
            return NodeFilter.SHOW_TEXT;
        case Node.CDATA_SECTION_NODE:
            return NodeFilter.SHOW_CDATA_SECTION;
        case Node.ENTITY_REFERENCE_NODE:
            return NodeFilter.SHOW_ENTITY_REFERENCE;
        case Node.ENTITY_NODE:
            return NodeFilter.SHOW_ENTITY;
        case Node.PROCESSING_INSTRUCTION_NODE:
            return NodeFilter.SHOW_PROCESSING_INSTRUCTION;
        case Node.COMMENT_NODE:
            return NodeFilter.SHOW_COMMENT;
        case Node.DOCUMENT_NODE:
            return NodeFilter.SHOW_DOCUMENT;
        case Node.DOCUMENT_TYPE_NODE:
            return NodeFilter.SHOW_DOCUMENT_TYPE;
        case Node.DOCUMENT_FRAGMENT_NODE:
            return NodeFilter.SHOW_DOCUMENT_FRAGMENT;
        case Node.NOTATION_NODE:
            return NodeFilter.SHOW_NOTATION;
        default:
            return 0;
    }
}
 
源代码2 项目: HtmlUnit-Android   文件: DomTreeWalker.java
/**
 * Given a {@link Node}, return the appropriate constant for whatToShow.
 *
 * @param node the node
 * @return the whatToShow constant for the type of specified node
 */
static int getFlagForNode(final Node node) {
    switch (node.getNodeType()) {
        case Node.ELEMENT_NODE:
            return NodeFilter.SHOW_ELEMENT;
        case Node.ATTRIBUTE_NODE:
            return NodeFilter.SHOW_ATTRIBUTE;
        case Node.TEXT_NODE:
            return NodeFilter.SHOW_TEXT;
        case Node.CDATA_SECTION_NODE:
            return NodeFilter.SHOW_CDATA_SECTION;
        case Node.ENTITY_REFERENCE_NODE:
            return NodeFilter.SHOW_ENTITY_REFERENCE;
        case Node.ENTITY_NODE:
            return NodeFilter.SHOW_ENTITY;
        case Node.PROCESSING_INSTRUCTION_NODE:
            return NodeFilter.SHOW_PROCESSING_INSTRUCTION;
        case Node.COMMENT_NODE:
            return NodeFilter.SHOW_COMMENT;
        case Node.DOCUMENT_NODE:
            return NodeFilter.SHOW_DOCUMENT;
        case Node.DOCUMENT_TYPE_NODE:
            return NodeFilter.SHOW_DOCUMENT_TYPE;
        case Node.DOCUMENT_FRAGMENT_NODE:
            return NodeFilter.SHOW_DOCUMENT_FRAGMENT;
        case Node.NOTATION_NODE:
            return NodeFilter.SHOW_NOTATION;
        default:
            return 0;
    }
}
 
源代码3 项目: jdk1.8-source-analysis   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码4 项目: TencentKona-8   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码5 项目: jdk8u60   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码6 项目: JDKSourceCode1.8   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码7 项目: openjdk-jdk8u   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码8 项目: openjdk-jdk8u-backup   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码9 项目: Bytecoder   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码10 项目: openjdk-jdk9   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码11 项目: hottub   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码12 项目: openjdk-8-source   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码13 项目: openjdk-8   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}
 
源代码14 项目: j2objc   文件: NodeSet.java
/**
 *  This attribute determines which node types are presented via the
 * iterator. The available set of constants is defined in the
 * <code>NodeFilter</code> interface. For NodeSets, the mask has been
 * hardcoded to show all nodes except EntityReference nodes, which have
 * no equivalent in the XPath data model.
 *
 * @return integer used as a bit-array, containing flags defined in
 * the DOM's NodeFilter class. The value will be 
 * <code>SHOW_ALL & ~SHOW_ENTITY_REFERENCE</code>, meaning that
 * only entity references are suppressed.
 */
public int getWhatToShow()
{
  return NodeFilter.SHOW_ALL & ~NodeFilter.SHOW_ENTITY_REFERENCE;
}