package java.util;

public class Vector
{
 protected Object[] elementData;
 protected int elementCount;
 protected int capacityIncrement;

 public Vector(int int_1, int int_2)
 {
 }
 
 public Vector(int int_1)
 {
 }
 
 public Vector()
 {
 }
 
 public void copyInto(Object[] objects_1)
 {
 }
 
 public void trimToSize()
 {
 }
 
 public void ensureCapacity(int int_1)
 {
 }
 
 public void setSize(int int_1)
 {
 }
 
 public int capacity()
 {
  return 0;
 }
 
 public int size()
 {
  return 0;
 }
 
 public boolean isEmpty()
 {
  return false;
 }
 
 public Enumeration elements()
 {
  return null;
 }
 
 public boolean contains(Object object_1)
 {
  return false;
 }
 
 public int indexOf(Object object_1)
 {
  return 0;
 }
 
 public int indexOf(Object object_1, int int_1)
 {
  return 0;
 }
 
 public int lastIndexOf(Object object_1)
 {
  return 0;
 }
 
 public int lastIndexOf(Object object_1, int int_1)
 {
  return 0;
 }
 
 public Object elementAt(int int_1)
 {
  return null;
 }
 
 public Object firstElement()
 {
  return null;
 }
 
 public Object lastElement()
 {
  return null;
 }
 
 public void setElementAt(Object object_1, int int_1)
 {
 }
 
 public void removeElementAt(int int_1)
 {
 }
 
 public void insertElementAt(Object object_1, int int_1)
 {
 }
 
 public void addElement(Object object_1)
 {
 }
 
 public boolean removeElement(Object object_1)
 {
  return false;
 }
 
 public void removeAllElements()
 {
 }
 
 public String toString()
 {
  return null;
 }
 
}