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

How to use
getReverseReader
method
in
org.apache.lucene.util.fst.BytesStore

Best Java code snippets using org.apache.lucene.util.fst.BytesStore.getReverseReader (Showing top 16 results out of 315)

origin: org.apache.lucene/lucene-core

public FST.BytesReader getReverseReader() {
 return getReverseReader(true);
}
origin: org.apache.lucene/lucene-core

/** Returns a {@link BytesReader} for this FST, positioned at
 *  position 0. */
public BytesReader getBytesReader() {
 if (bytesArray != null) {
  return new ReverseBytesReader(bytesArray);
 } else {
  return bytes.getReverseReader();
 }
}
origin: org.apache.lucene/lucene-core

assert bytes != null;
if (doShareSuffix) {
 dedupHash = new NodeHash<>(fst, bytes.getReverseReader(false));
} else {
 dedupHash = null;
origin: org.apache.lucene/lucene-core

BytesReader reader = emptyBytes.getReverseReader();
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

public FST.BytesReader getReverseReader() {
 return getReverseReader(true);
}
origin: harbby/presto-connectors

public FST.BytesReader getReverseReader() {
 return getReverseReader(true);
}
origin: org.infinispan/infinispan-embedded-query

public FST.BytesReader getReverseReader() {
 return getReverseReader(true);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

/** Returns a {@link BytesReader} for this FST, positioned at
 *  position 0. */
public BytesReader getBytesReader() {
 if (bytesArray != null) {
  return new ReverseBytesReader(bytesArray);
 } else {
  return bytes.getReverseReader();
 }
}
origin: org.infinispan/infinispan-embedded-query

/** Returns a {@link BytesReader} for this FST, positioned at
 *  position 0. */
public BytesReader getBytesReader() {
 if (packed) {
  if (bytesArray != null) {
   return new ForwardBytesReader(bytesArray);
  } else {
   return bytes.getForwardReader();
  }
 } else {
  if (bytesArray != null) {
   return new ReverseBytesReader(bytesArray);
  } else {
   return bytes.getReverseReader();
  }
 }
}
origin: harbby/presto-connectors

/** Returns a {@link BytesReader} for this FST, positioned at
 *  position 0. */
public BytesReader getBytesReader() {
 if (packed) {
  if (bytesArray != null) {
   return new ForwardBytesReader(bytesArray);
  } else {
   return bytes.getForwardReader();
  }
 } else {
  if (bytesArray != null) {
   return new ReverseBytesReader(bytesArray);
  } else {
   return bytes.getReverseReader();
  }
 }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

assert bytes != null;
if (doShareSuffix) {
 dedupHash = new NodeHash<>(fst, bytes.getReverseReader(false));
} else {
 dedupHash = null;
origin: org.infinispan/infinispan-embedded-query

assert bytes != null;
if (doShareSuffix) {
 dedupHash = new NodeHash<>(fst, bytes.getReverseReader(false));
} else {
 dedupHash = null;
origin: harbby/presto-connectors

assert bytes != null;
if (doShareSuffix) {
 dedupHash = new NodeHash<>(fst, bytes.getReverseReader(false));
} else {
 dedupHash = null;
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

BytesReader reader = emptyBytes.getReverseReader();
origin: org.infinispan/infinispan-embedded-query

 reader = emptyBytes.getForwardReader();
} else {
 reader = emptyBytes.getReverseReader();
origin: harbby/presto-connectors

 reader = emptyBytes.getForwardReader();
} else {
 reader = emptyBytes.getReverseReader();
org.apache.lucene.util.fstBytesStoregetReverseReader

Popular methods of BytesStore

  • <init>
    Pulls bytes from the provided IndexInput.
  • copyBytes
  • finish
  • getPosition
  • ramBytesUsed
  • reverse
    Reverse from srcPos, inclusive, to destPos, inclusive.
  • skipBytes
  • writeByte
    Absolute write byte; you must ensure dest is < max position written so far.
  • writeBytes
  • writeTo
    Writes all of our bytes to the target DataOutput.
  • writeVLong
  • getBlockBits
  • writeVLong,
  • getBlockBits,
  • getForwardReader,
  • truncate,
  • writeVInt

Popular in Java

  • Making http post requests using okhttp
  • compareTo (BigDecimal)
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • Kernel (java.awt.image)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • 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