DTMIterator.getWhatToShow
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.apache.xml.dtm.DTMIterator.getWhatToShow (Showing top 20 results out of 315)

  • Common ways to obtain DTMIterator
private void myMethod () {
DTMIterator d =
  • XObject arg;arg.iter()
  • XPathContext xctxt;xctxt.getContextNodeList()
  • Expression m_selectExpression;XPathContext xctxt;m_selectExpression.asIterator(xctxt, contextNode)
  • Smart code suggestions by Codota
}
origin: xalan/xalan

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: robovm/robovm

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: robovm/robovm

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: xalan/xalan

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: ibinti/bugvm

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: MobiVM/robovm

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: org.apache.xalan/com.springsource.org.apache.xalan

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: com.gluonhq/robovm-rt

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: com.mobidevelop.robovm/robovm-rt

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: com.bugvm/bugvm-rt

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/** Return a mask describing which node types are presented via the
 * iterator.
 **/
public int getWhatToShow()
 {
  return dtm_iter.getWhatToShow();
 }
origin: ibinti/bugvm

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: MobiVM/robovm

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: com.bugvm/bugvm-rt

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
origin: com.gluonhq/robovm-rt

/**
 * @see DTMIterator#getWhatToShow()
 */
public int getWhatToShow()
{
 return hasCache() ? (DTMFilter.SHOW_ALL & ~DTMFilter.SHOW_ENTITY_REFERENCE) 
   : m_iter.getWhatToShow();
}
org.apache.xml.dtmDTMIteratorgetWhatToShow

Javadoc

This attribute determines which node types are presented via the iterator. The available set of constants is defined above. Nodes not accepted by whatToShow will be skipped, but their children may still be considered.

Popular methods of DTMIterator

  • getDTM
    Get an instance of a DTM that "owns" a node handle. Since a node iterator may be passed without a DT
  • nextNode
    Returns the next node in the set and advances the position of the iterator in the set. After a DTMIt
  • getCurrentPos
    Get the current position within the cached list, which is one less than the next nextNode() call wil
  • getLength
    The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.
  • getCurrentNode
    Get the current node in the iterator. Note that this differs from the DOM's NodeIterator, where the
  • allowDetachToRelease
    Specify if it's OK for detach to release the iterator for reuse.
  • clone
    Get a clone of this iterator, but don't reset the iteration in the process, so that it may be used f
  • cloneWithReset
    Get a cloned Iterator that is reset to the start of the iteration.
  • detach
    Detaches the DTMIterator from the set which it iterated over, releasing any computational resources
  • getAxis
    Returns the axis being iterated, if it is known.
  • getDTMManager
    Get an instance of the DTMManager. Since a node iterator may be passed without a DTMManager, this al
  • getExpandEntityReferences
    The value of this flag determines whether the children of entity reference nodes are visible to the
  • getDTMManager,
  • getExpandEntityReferences,
  • getRoot,
  • isDocOrdered,
  • item,
  • previousNode,
  • reset,
  • runTo,
  • setCurrentPos

Popular in Java

  • Updating database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSystemService (Context)
  • getContentResolver (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • JFileChooser (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)