Tabnine Logo
EntryFilteringCursor.first
Code IndexAdd Tabnine to your IDE (free)

How to use
first
method
in
org.apache.directory.server.core.api.filtering.EntryFilteringCursor

Best Java code snippets using org.apache.directory.server.core.api.filtering.EntryFilteringCursor.first (Showing top 3 results out of 315)

origin: org.apache.directory.server/apacheds-core-api

/**
 * {@inheritDoc}
 */
public boolean first() throws LdapException, CursorException
{
  if ( listSize > 0 )
  {
    index = start;
    return list.get( index ).first();
  }
  return false;
}
origin: org.apache.directory.server/apacheds-core-jndi

public NamingEnumerationAdapter( EntryFilteringCursor cursor ) throws NamingException
{
  this.cursor = cursor;
  try
  {
    if ( !cursor.first() )
    {
      cursor.close();
      available = false;
    }
    else
    {
      available = true;
    }
  }
  catch ( Exception e )
  {
    JndiUtils.wrap( e );
  }
}
origin: org.apache.directory.server/apacheds-core-shared

if ( cursor.first() )
org.apache.directory.server.core.api.filteringEntryFilteringCursorfirst

Popular methods of EntryFilteringCursor

  • get
  • next
  • close
  • addEntryFilter
    Adds an entry filter to this BaseEntryFilteringCursor at the very end of the filter list. EntryFilte
  • beforeFirst
  • afterLast
  • available
  • isFirst
  • isLast
  • last
  • previous
  • setClosureMonitor
  • previous,
  • setClosureMonitor

Popular in Java

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • setContentView (Activity)
  • requestLocationUpdates (LocationManager)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Best IntelliJ 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