congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
QueryResult.getPropertyByQueryName
Code IndexAdd Tabnine to your IDE (free)

How to use
getPropertyByQueryName
method
in
org.apache.chemistry.opencmis.client.api.QueryResult

Best Java code snippets using org.apache.chemistry.opencmis.client.api.QueryResult.getPropertyByQueryName (Showing top 4 results out of 315)

origin: org.apache.chemistry.opencmis/chemistry-opencmis-test-tck

private void doQuery(Session session, String stmt) {
  for (QueryResult qr : session.query(stmt, false)) {
    qr.getPropertyByQueryName("cmis:name");
  }
}
origin: net.aequologica.neo/geppaequo-cmis

  log.debug("{} \nobjectTypeId={}\nname={}\ncreatedBy={}\nobjectId={}\ncontentStreamFileName={}\ncontentStreamMimeType={}\ncontentStreamLengt={}",
    i++,
    qr.getPropertyByQueryName("cmis:objectTypeId").getFirstValue(),
    qr.getPropertyByQueryName("cmis:name").getFirstValue(),
    qr.getPropertyByQueryName("cmis:createdBy").getFirstValue(),
    qr.getPropertyByQueryName("cmis:objectId").getFirstValue(),
    qr.getPropertyByQueryName("cmis:contentStreamFileName").getFirstValue(),
    qr.getPropertyByQueryName("cmis:contentStreamMimeType").getFirstValue(),
    qr.getPropertyByQueryName("cmis:contentStreamLength").getFirstValue());
CmisObject object = this.openCMISSession.getObject(qr.getPropertyByQueryName("cmis:objectId").getFirstValue().toString());
origin: org.apache.chemistry.opencmis/chemistry-opencmis-test-tck

PropertyData<?> pd = qr.getPropertyByQueryName(propDef.getQueryName());
origin: org.apache.chemistry.opencmis/chemistry-opencmis-test-tck

String objectId = (String) qr.getPropertyByQueryName(objectIdQueryName).getFirstValue();
org.apache.chemistry.opencmis.client.apiQueryResultgetPropertyByQueryName

Javadoc

Returns a property by query name or alias.

Popular methods of QueryResult

  • getProperties
    Returns the list of all properties in this query result.
  • getPropertyValueById
    Returns a property (single) value by ID.
  • getPropertyValueByQueryName
    Returns a property (single) value by query name or alias.
  • getPropertyById
    Returns a property by ID. Because repositories are not obligated to add property IDs to their query
  • getPropertyMultivalueById
    Returns a property multi-value by ID.
  • getRelationships
    Returns the relationships if they have been requested.

Popular in Java

  • Reading from database using SQL prepared statement
  • getSharedPreferences (Context)
  • compareTo (BigDecimal)
  • putExtra (Intent)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Path (java.nio.file)
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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