congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
CacheElementInfo.isEternal
Code IndexAdd Tabnine to your IDE (free)

How to use
isEternal
method
in
org.apache.commons.jcs.admin.CacheElementInfo

Best Java code snippets using org.apache.commons.jcs.admin.CacheElementInfo.isEternal (Showing top 2 results out of 315)

origin: org.apache.commons/commons-jcs-core

  /**
   * @return string info on the item
   */
  @Override
  public String toString()
  {
    StringBuilder buf = new StringBuilder();
    buf.append( "\nCacheElementInfo " );
    buf.append( "\n Key [" ).append( getKey() ).append( "]" );
    buf.append( "\n Eternal [" ).append( isEternal() ).append( "]" );
    buf.append( "\n CreateTime [" ).append( getCreateTime() ).append( "]" );
    buf.append( "\n MaxLifeSeconds [" ).append( getMaxLifeSeconds() ).append( "]" );
    buf.append( "\n ExpiresInSeconds [" ).append( getExpiresInSeconds() ).append( "]" );

    return buf.toString();
  }
}
origin: org.apache.tomee.patch/commons-jcs-core

  /**
   * @return string info on the item
   */
  @Override
  public String toString()
  {
    StringBuilder buf = new StringBuilder();
    buf.append( "\nCacheElementInfo " );
    buf.append( "\n Key [" ).append( getKey() ).append( "]" );
    buf.append( "\n Eternal [" ).append( isEternal() ).append( "]" );
    buf.append( "\n CreateTime [" ).append( getCreateTime() ).append( "]" );
    buf.append( "\n MaxLifeSeconds [" ).append( getMaxLifeSeconds() ).append( "]" );
    buf.append( "\n ExpiresInSeconds [" ).append( getExpiresInSeconds() ).append( "]" );

    return buf.toString();
  }
}
org.apache.commons.jcs.adminCacheElementInfoisEternal

Popular methods of CacheElementInfo

  • getKey
  • <init>
    Parameterized constructor
  • getCreateTime
  • getExpiresInSeconds
    Ignored if isEternal
  • getMaxLifeSeconds
    Ignored if isEternal

Popular in Java

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • onCreateOptionsMenu (Activity)
  • setContentView (Activity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • JList (javax.swing)
  • Top Sublime Text 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