Examples of ExactMatchIndexEnumeration


Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

    if ( _session!=null)
    {
      final IndexIterator ii=_session.greaterThanOrEqualEntries( index_name, key);
      if ( ii.isExactMatch())
      {
        result=new ExactMatchIndexEnumeration( ii);
      }
    }
   
    return result;
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

    return sb.toString();
  }

  public static Enumeration getAnnotationsWithType( IndexObjectDB db, Persistent annotationClass)
  {
    return new ExactMatchIndexEnumeration(
        db.greaterThanOrEqualEntries(ANNOTATION_CLASS, new ObjectRefKey(annotationClass)));
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db ILDB for this analyzed system
   * @return an enumeration over references to this string
   */
  public Enumeration getReferencesTo( IndexObjectDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(SRTARGET, new ObjectRefKey(this)));
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db ILDB for this analyzed system
   * @return an enumeration over string resources with this string as the value
   */
  public Enumeration getResourcesContaining( IndexObjectDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(DBStringResource.STRING_RESOURCE_VALUE_INDEX, new ObjectRefKey(this)));
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db ILDB for this analyzed system
   * @return an enumeration over string resources with this string as the name
   */
  public Enumeration getResourcesNamedBy( IndexObjectDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(DBStringResource.STRING_RESOURCE_NAME_INDEX, new ObjectRefKey(this)));   
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db ILDB for this analyzed system
   * @return an enumeration over calls to this method
   */
  public Enumeration getCallsTo( ILDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(DBCall.CALL_TARGET, new ObjectRefKey(this)));
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db ILDB for this analyzed system
   * @return an enumeration over calls to this field
   */
  public Enumeration getReferencesTo( ILDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(DBFieldReference.FRTARGET, new ObjectRefKey(this)));
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db
   * @return Enumeration of DBCatch object that reference this DBClass
   */
  public Enumeration getCatchesOf( ILDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(DBCatch.CATCH_TARGET, new ObjectRefKey(this)));   
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

    return _persistentImpl;
  }
 
  private Enumeration getTypesByIndex( ILDB db, String indexName)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(indexName, new ObjectRefKey( this)));
  }
View Full Code Here

Examples of com.antlersoft.odb.ExactMatchIndexEnumeration

   * @param db ILDB for this analyzed system
   * @return an enumeration over classes in this assembly
   */
  public Enumeration getContainedClasses( ILDB db)
  {
    return new ExactMatchIndexEnumeration( db.greaterThanOrEqualEntries(DBClass.CLASS_ASSEMBLY_INDEX, new ObjectRefKey(this)));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.