Class CharVector

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    class CharVector
    extends java.lang.Object
    implements java.lang.Cloneable, java.io.Serializable
    This class implements a simple char vector with access to the underlying array.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private char[] array
      The encapsulated array
      private int blockSize  
      private static int DEFAULT_BLOCK_SIZE
      Capacity increment size
      private int n
      Points to next free item
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
        CharVector()  
      private CharVector​(char[] a, int capacity)  
      private CharVector​(int capacity)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) int alloc​(int size)  
      java.lang.Object clone()  
      (package private) char get​(int index)  
      char[] getArray()  
      (package private) int length()
      return number of items in array
      (package private) void trimToSize()  
      • Methods inherited from class java.lang.Object

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

      • DEFAULT_BLOCK_SIZE

        private static final int DEFAULT_BLOCK_SIZE
        Capacity increment size
        See Also:
        Constant Field Values
      • blockSize

        private int blockSize
      • array

        private char[] array
        The encapsulated array
      • n

        private int n
        Points to next free item
    • Constructor Detail

      • CharVector

        public CharVector()
      • CharVector

        private CharVector​(int capacity)
      • CharVector

        private CharVector​(char[] a,
                           int capacity)
    • Method Detail

      • clone

        public java.lang.Object clone()
        Overrides:
        clone in class java.lang.Object
      • getArray

        public char[] getArray()
      • length

        int length()
        return number of items in array
      • get

        char get​(int index)
      • alloc

        int alloc​(int size)
      • trimToSize

        void trimToSize()