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

How to use
toString
method
in
org.opencms.file.CmsFile

Best Java code snippets using org.opencms.file.CmsFile.toString (Showing top 2 results out of 315)

origin: org.opencms/opencms-core

  /**
   * @see org.opencms.file.CmsResource#toString()
   */
  @Override
  public String toString() {

    StringBuffer result = new StringBuffer();

    result.append("[");
    result.append(super.toString());
    result.append(", resource version: ");
    result.append(m_resourceVersion);
    result.append(", structure version ");
    result.append(m_structureVersion);
    result.append(", parent id: ");
    result.append(m_parentId);
    result.append(", publish tag: ");
    result.append(m_publishTag);
    result.append("]");

    return result.toString();
  }
}
origin: org.opencms/opencms-solr

  /**
   * @see org.opencms.file.CmsResource#toString()
   */
  @Override
  public String toString() {

    StringBuffer result = new StringBuffer();

    result.append("[");
    result.append(super.toString());
    result.append(", resource version: ");
    result.append(m_resourceVersion);
    result.append(", structure version ");
    result.append(m_structureVersion);
    result.append(", parent id: ");
    result.append(m_parentId);
    result.append(", publish tag: ");
    result.append(m_publishTag);
    result.append("]");

    return result.toString();
  }
}
org.opencms.fileCmsFiletoString

Popular methods of CmsFile

  • getContents
    Returns the content of this file.
  • setContents
    Sets the contents of this file. This will also set the date content, but only if the content is alre
  • getName
  • getRootPath
  • getTypeId
  • getStructureId
  • setDateLastModified
  • <init>
  • clone
    Returns a clone of this Objects instance.
  • getDateCreated
  • getDateLastModified
  • getFlags
  • getDateLastModified,
  • getFlags,
  • getLength,
  • getProjectLastModified,
  • getResourceId,
  • getState,
  • isFile,
  • isTouched,
  • setDateExpired,
  • setDateReleased

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • 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.
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • 14 Best Plugins for Eclipse
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