Tabnine Logo
GroupId.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.commons.jcs.engine.control.group.GroupId
constructor

Best Java code snippets using org.apache.commons.jcs.engine.control.group.GroupId.<init> (Showing top 10 results out of 315)

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

/**
 * Internal method used for group functionality.
 * <p>
 * @param group
 * @param name
 * @return GroupAttrName
 */
private GroupAttrName<K> getGroupAttrName( String group, K name )
{
  GroupId gid = new GroupId( this.getCacheControl().getCacheName(), group );
  return new GroupAttrName<K>( gid, name );
}
origin: org.apache.tomee.patch/commons-jcs-core

/**
 * Internal method used for group functionality.
 * <p>
 * @param cacheName
 * @param group
 * @param name
 * @return GroupAttrName
 */
private GroupAttrName<String> getGroupAttrName( String cacheName, String group, String name )
{
  GroupId gid = new GroupId( cacheName, group );
  return new GroupAttrName<String>( gid, name );
}
origin: org.apache.tomee.patch/commons-jcs-core

/**
 * Internal method used for group functionality.
 * <p>
 * @param group
 * @param name
 * @return GroupAttrName
 */
private GroupAttrName<K> getGroupAttrName( String group, K name )
{
  GroupId gid = new GroupId( this.getCacheControl().getCacheName(), group );
  return new GroupAttrName<K>( gid, name );
}
origin: org.tinygroup/org.tinygroup.jcscache2

private GroupAttrName<String> getGroupAttrName(String group, String name) {
  GroupId gid = new GroupId(groupCacheAccess.getCacheControl()
      .getCacheName(), group);
  return new GroupAttrName<String>(gid, name);
}
origin: org.apache.commons/commons-jcs-core

/**
 * Internal method used for group functionality.
 * <p>
 *
 * @param cacheName
 * @param group
 * @param name
 * @return GroupAttrName
 */
private GroupAttrName<String> getGroupAttrName(String cacheName, String group, String name)
{
  GroupId gid = new GroupId(cacheName, group);
  return new GroupAttrName<String>(gid, name);
}
origin: org.apache.commons/commons-jcs-core

/**
 * Internal method used for group functionality.
 * <p>
 *
 * @param cacheName
 * @param group
 * @param name
 * @return GroupAttrName
 */
private GroupAttrName<String> getGroupAttrName(String cacheName, String group, String name)
{
  GroupId gid = new GroupId(cacheName, group);
  return new GroupAttrName<String>(gid, name);
}
origin: org.apache.commons/commons-jcs-core

/**
 * Gets the set of keys of objects currently in the group.
 * <p>
 * @param group
 * @return A Set of keys.
 */
@Override
public Set<K> getGroupKeys( String group )
{
  Set<K> groupKeys = new HashSet<K>();
  GroupId groupId = new GroupId( this.getCacheControl().getCacheName(), group );
  for (GroupAttrName<K> gan : this.getCacheControl().getKeySet())
  {
    if (gan.groupId.equals( groupId ))
    {
      groupKeys.add( gan.attrName );
    }
  }
  return groupKeys;
}
origin: org.apache.tomee.patch/commons-jcs-core

/**
 * Gets the set of keys of objects currently in the group.
 * <p>
 * @param group
 * @return A Set of keys.
 */
@Override
public Set<K> getGroupKeys( String group )
{
  Set<K> groupKeys = new HashSet<K>();
  GroupId groupId = new GroupId( this.getCacheControl().getCacheName(), group );
  for (GroupAttrName<K> gan : this.getCacheControl().getKeySet())
  {
    if (gan.groupId.equals( groupId ))
    {
      groupKeys.add( gan.attrName );
    }
  }
  return groupKeys;
}
origin: org.apache.commons/commons-jcs-core

GroupAttrName<String> groupKey = new GroupAttrName<String>(new GroupId("test", "group"), "key");
ICacheElement<GroupAttrName<String>, String> element =
  new CacheElement<GroupAttrName<String>, String>( "test", groupKey, "value1" );
origin: org.apache.tomee.patch/commons-jcs-core

GroupAttrName<String> groupKey = new GroupAttrName<String>(new GroupId("test", "group"), "key");
ICacheElement<GroupAttrName<String>, String> element =
  new CacheElement<GroupAttrName<String>, String>( "test", groupKey, "value1" );
org.apache.commons.jcs.engine.control.groupGroupId<init>

Javadoc

Constructor for the GroupId object

Popular methods of GroupId

  • equals
  • hashCode

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • getApplicationContext (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • JPanel (javax.swing)
  • Table (org.hibernate.mapping)
    A relational table
  • Runner (org.openjdk.jmh.runner)
  • Top plugins for Android Studio
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