Tabnine Logo
MapBasedNamespaceContext.getPrefixes
Code IndexAdd Tabnine to your IDE (free)

How to use
getPrefixes
method
in
com.helger.xml.namespace.MapBasedNamespaceContext

Best Java code snippets using com.helger.xml.namespace.MapBasedNamespaceContext.getPrefixes (Showing top 3 results out of 315)

origin: com.helger/ph-schematron

 @Nonnull
 @DevelopersNote ("Java 8: Iterator; Java 10: Iterator<String>")
 public Iterator getPrefixes (@Nonnull final String sNamespaceURI)
 {
  return m_aCtx.getPrefixes (sNamespaceURI);
 }
}
origin: phax/ph-schematron

 @Nonnull
 @DevelopersNote ("Java 8: Iterator; Java 10: Iterator<String>")
 public Iterator getPrefixes (@Nonnull final String sNamespaceURI)
 {
  return m_aCtx.getPrefixes (sNamespaceURI);
 }
}
origin: com.helger/ph-xml

@Override
@Nonnull
public Iterator getPrefixes (@Nonnull final String uri)
{
 final Iterator <?> aIter1 = m_aInternalContext.getPrefixes (uri);
 if (m_aUserContext == null)
  return aIter1;
 final Iterator <?> aIter2 = m_aUserContext.getPrefixes (uri);
 return new CombinedIterator <> (aIter1, aIter2);
}
com.helger.xml.namespaceMapBasedNamespaceContextgetPrefixes

Popular methods of MapBasedNamespaceContext

  • <init>
    Constructor with prefix to namespace URL map
  • addDefaultNamespaceURI
    Add the default namespace URL
  • addMapping
    Add a new prefix to namespace mapping. If a prefix is already present, an IllegalArgumentException i
  • addMappings
  • getPrefix
  • setMapping
    Add a new prefix to namespace mapping. If a prefix is already present it is overwritten.
  • getClone
  • getNamespaceURI
  • setMappings
  • _addMapping
  • getCustomNamespaceURI
  • getDefaultNamespaceURI
  • getCustomNamespaceURI,
  • getDefaultNamespaceURI,
  • getPrefixToNamespaceURIMap,
  • setDefaultNamespaceURI

Popular in Java

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • JPanel (javax.swing)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now