Class SimpleTextLiveDocsFormat.SimpleTextBits

  • All Implemented Interfaces:
    Bits
    Enclosing class:
    SimpleTextLiveDocsFormat

    static class SimpleTextLiveDocsFormat.SimpleTextBits
    extends java.lang.Object
    implements Bits
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.util.BitSet bits  
      (package private) int size  
    • Constructor Summary

      Constructors 
      Constructor Description
      SimpleTextBits​(java.util.BitSet bits, int size)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean get​(int index)
      Returns the value of the bit with the specified index.
      int length()
      Returns the number of bits in this set
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • bits

        final java.util.BitSet bits
      • size

        final int size
    • Constructor Detail

      • SimpleTextBits

        SimpleTextBits​(java.util.BitSet bits,
                       int size)
    • Method Detail

      • get

        public boolean get​(int index)
        Description copied from interface: Bits
        Returns the value of the bit with the specified index.
        Specified by:
        get in interface Bits
        Parameters:
        index - index, should be non-negative and < Bits.length(). The result of passing negative or out of bounds values is undefined by this interface, just don't do it!
        Returns:
        true if the bit is set, false otherwise.
      • length

        public int length()
        Description copied from interface: Bits
        Returns the number of bits in this set
        Specified by:
        length in interface Bits