Tabnine Logo
AttributeImpl.end
Code IndexAdd Tabnine to your IDE (free)

How to use
end
method
in
org.apache.lucene.util.AttributeImpl

Best Java code snippets using org.apache.lucene.util.AttributeImpl.end (Showing top 3 results out of 315)

origin: org.apache.lucene/lucene-core

/**
 * Resets all Attributes in this AttributeSource by calling
 * {@link AttributeImpl#end()} on each Attribute implementation.
 */
public final void endAttributes() {
 for (State state = getCurrentState(); state != null; state = state.next) {
  state.attribute.end();
 }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

/**
 * Resets all Attributes in this AttributeSource by calling
 * {@link AttributeImpl#end()} on each Attribute implementation.
 */
public final void endAttributes() {
 for (State state = getCurrentState(); state != null; state = state.next) {
  state.attribute.end();
 }
}
origin: org.infinispan/infinispan-embedded-query

/**
 * Resets all Attributes in this AttributeSource by calling
 * {@link AttributeImpl#end()} on each Attribute implementation.
 */
public final void endAttributes() {
 for (State state = getCurrentState(); state != null; state = state.next) {
  state.attribute.end();
 }
}
org.apache.lucene.utilAttributeImplend

Javadoc

Clears the values in this AttributeImpl and resets it to its value at the end of the field. If this implementation implements more than one Attribute interface it clears all.

The default implementation simply calls #clear()

Popular methods of AttributeImpl

  • clear
    Clears the values in this AttributeImpl and resets it to its default value. If this implementation i
  • clone
    In most cases the clone is, and should be, deep in order to be able to properly capture the state of
  • copyTo
    Copies the values from this Attribute into the passed-in target attribute. The target implementation
  • reflectWith
    This method is for introspection of attributes, it should simply add the key/values this attribute h

Popular in Java

  • Reactive rest calls using spring rest template
  • putExtra (Intent)
  • getResourceAsStream (ClassLoader)
  • getContentResolver (Context)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Best plugins for Eclipse
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