Uses of Class
com.vladsch.flexmark.util.sequence.IRichSequenceBase

Packages that use IRichSequenceBase
Package
Description
 
  • Uses of IRichSequenceBase in com.vladsch.flexmark.util.sequence

    Modifier and Type
    Class
    Description
    static class 
     
    class 
    Implementation of BaseSequence
    final class 
    A CharSequence that references original char[] a subSequence() returns a sub-sequence from the original base sequence
    final class 
    A BasedSequence which maps characters according to CharMapper
    class 
    A CharSequence that maps characters according to CharMapper
    final class 
    A BasedSequence with an out of scope of original char sequence prefix
    class 
    A RichSequence implementation
    class 
    A BasedSequence which consists of segments of other BasedSequences
    final class 
    A BasedSequence which consists of segments of other BasedSequences NOTE: very efficient for random access but extremely wasteful with space by allocating 4 bytes per character in the sequence with corresponding construction penalty use SegmentedSequenceTree which is binary tree based segmented sequence with minimal overhead and optimized to give penalty free random access for most applications.
    final class 
    A BasedSequence which consists of segments of other BasedSequences NOTE: very efficient for random access but extremely wasteful with space by allocating 4 bytes per character in the sequence with corresponding construction penalty use SegmentedSequenceTree which is binary tree based segmented sequence with minimal overhead and optimized to give penalty free random access for most applications.
    final class 
    A BasedSequence implementation which wraps original CharSequence to provide a BasedSequence for all its subsequences, a subSequence() returns a SubSequence from the original base sequence.