Tabnine Logo
LocationPath.isAbsolute
Code IndexAdd Tabnine to your IDE (free)

How to use
isAbsolute
method
in
org.jaxen.expr.LocationPath

Best Java code snippets using org.jaxen.expr.LocationPath.isAbsolute (Showing top 5 results out of 315)

origin: pmd/pmd

if (locationPath.isAbsolute()) {
origin: jaxen/jaxen

if ( locationPath.isAbsolute() )
origin: deegree/deegree3

private QName getName( ValueReference path ) {
  if ( path.getAsQName() != null ) {
    return path.getAsQName();
  }
  Expr xpath = path.getAsXPath();
  if ( xpath instanceof LocationPath ) {
    LocationPath lp = (LocationPath) xpath;
    if ( lp.getSteps().size() == 1 && !lp.isAbsolute() ) {
      Step step = (Step) lp.getSteps().get( 0 );
      if ( step instanceof NameStep ) {
        return getQName( (NameStep) step );
      }
    }
  }
  return null;
}
origin: net.sourceforge.pmd/pmd-core

if (locationPath.isAbsolute()) {
origin: deegree/deegree3

  continue;
if ( lp.isAbsolute() ) {
  LOG.warn( "Unhandled location path: '" + particleMapping.getPath()
       + "'. Only relative paths are handled." );
org.jaxen.exprLocationPathisAbsolute

Javadoc

Returns true if this is an absolute location path; false if it isn't. Absolute location paths all begiune with / or //.

Popular methods of LocationPath

  • getSteps
    Returns the ordered list of steps in this location path. This list may be live.
  • addStep
    Add the next step to this location path.
  • getText
  • evaluate
  • simplify

Popular in Java

  • Creating JSON documents from java classes using gson
  • onCreateOptionsMenu (Activity)
  • onRequestPermissionsResult (Fragment)
  • setContentView (Activity)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JCheckBox (javax.swing)
  • Best IntelliJ plugins
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