Class CharSequenceByArray

  • All Implemented Interfaces:
    java.lang.CharSequence

    public class CharSequenceByArray
    extends java.lang.Object
    implements java.lang.CharSequence
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int begin  
      char[] data  
      int end  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      char charAt​(int index)  
      int length()  
      @NotNull java.lang.CharSequence subSequence​(int start, int end)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.lang.CharSequence

        chars, codePoints
    • Field Detail

      • data

        public final char[] data
      • begin

        public final int begin
      • end

        public final int end
    • Constructor Detail

      • CharSequenceByArray

        public CharSequenceByArray​(char[] data)
      • CharSequenceByArray

        public CharSequenceByArray​(char[] data,
                                   int begin,
                                   int end)
    • Method Detail

      • length

        public int length()
        Specified by:
        length in interface java.lang.CharSequence
      • charAt

        public char charAt​(int index)
        Specified by:
        charAt in interface java.lang.CharSequence
      • toString

        public java.lang.String toString()
        Specified by:
        toString in interface java.lang.CharSequence
        Overrides:
        toString in class java.lang.Object
      • subSequence

        @NotNull
        public @NotNull java.lang.CharSequence subSequence​(int start,
                                                           int end)
        Specified by:
        subSequence in interface java.lang.CharSequence