Tabnine Logo
SelectorImpl.normalizePropertyName
Code IndexAdd Tabnine to your IDE (free)

How to use
normalizePropertyName
method
in
org.apache.jackrabbit.oak.query.ast.SelectorImpl

Best Java code snippets using org.apache.jackrabbit.oak.query.ast.SelectorImpl.normalizePropertyName (Showing top 6 results out of 315)

origin: apache/jackrabbit-oak

/**
 * The value for the given selector for the current node.
 * 
 * @param propertyName the JCR (not normalized) property name
 * @return the property value
 */
public PropertyValue currentProperty(String propertyName) {
  String pn = normalizePropertyName(propertyName);
  return currentOakProperty(pn);
}
origin: apache/jackrabbit-oak

/**
 * The value for the given selector for the current node, filtered by
 * property type.
 * 
 * @param propertyName the JCR (not normalized) property name
 * @param propertyType only include properties of this type
 * @return the property value (possibly null)
 */
public PropertyValue currentProperty(String propertyName, int propertyType) {
  String pn = normalizePropertyName(propertyName);
  return currentOakProperty(pn, propertyType);
}
origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak

/**
 * The value for the given selector for the current node.
 * 
 * @param propertyName the JCR (not normalized) property name
 * @return the property value
 */
public PropertyValue currentProperty(String propertyName) {
  String pn = normalizePropertyName(propertyName);
  return currentOakProperty(pn);
}
origin: org.apache.jackrabbit/oak-core

/**
 * The value for the given selector for the current node.
 * 
 * @param propertyName the JCR (not normalized) property name
 * @return the property value
 */
public PropertyValue currentProperty(String propertyName) {
  String pn = normalizePropertyName(propertyName);
  return currentOakProperty(pn);
}
origin: org.apache.jackrabbit/oak-core

/**
 * The value for the given selector for the current node, filtered by
 * property type.
 * 
 * @param propertyName the JCR (not normalized) property name
 * @param propertyType only include properties of this type
 * @return the property value (possibly null)
 */
public PropertyValue currentProperty(String propertyName, int propertyType) {
  String pn = normalizePropertyName(propertyName);
  return currentOakProperty(pn, propertyType);
}
origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak

/**
 * The value for the given selector for the current node, filtered by
 * property type.
 * 
 * @param propertyName the JCR (not normalized) property name
 * @param propertyType only include properties of this type
 * @return the property value (possibly null)
 */
public PropertyValue currentProperty(String propertyName, int propertyType) {
  String pn = normalizePropertyName(propertyName);
  return currentOakProperty(pn, propertyType);
}
org.apache.jackrabbit.oak.query.astSelectorImplnormalizePropertyName

Popular methods of SelectorImpl

  • <init>
  • createFilter
    Create the filter condition for planning or execution.
  • currentOakProperty
  • currentPath
    Get the current absolute Oak path (normalized).
  • currentProperty
    The value for the given selector for the current node, filtered by property type.
  • currentTree
    Get the tree at the current path.
  • equals
  • evaluateCurrentRow
  • evaluateTypeMatch
  • getExecutionPlan
  • getIndex
  • getLocalPath
  • getIndex,
  • getLocalPath,
  • getMixinTypes,
  • getNodeType,
  • getPrimaryTypes,
  • getQuery,
  • getScanCount,
  • getSelectorName,
  • getSupertypes,
  • getTree

Popular in Java

  • Making http post requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSystemService (Context)
  • getResourceAsStream (ClassLoader)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • 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