org.eclipse.jdt.internal.compiler.util
类 HashtableOfIntValues

java.lang.Object
  继承者 org.eclipse.jdt.internal.compiler.util.HashtableOfIntValues
所有已实现的接口:
Cloneable

public final class HashtableOfIntValues
extends Object
implements Cloneable

Hashtable of {char[] --> int}


字段摘要
 int elementSize
           
 char[][] keyTable
           
static int NO_VALUE
           
 int[] valueTable
           
 
构造方法摘要
HashtableOfIntValues()
           
HashtableOfIntValues(int size)
           
 
方法摘要
 Object clone()
           
 boolean containsKey(char[] key)
           
 int get(char[] key)
           
 int put(char[] key, int value)
           
 int removeKey(char[] key)
           
 int size()
           
 String toString()
           
 
从类 java.lang.Object 继承的方法
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

字段详细信息

NO_VALUE

public static final int NO_VALUE
另请参见:
常量字段值

keyTable

public char[][] keyTable

valueTable

public int[] valueTable

elementSize

public int elementSize
构造方法详细信息

HashtableOfIntValues

public HashtableOfIntValues()

HashtableOfIntValues

public HashtableOfIntValues(int size)
方法详细信息

clone

public Object clone()
             throws CloneNotSupportedException
覆盖:
Object 中的 clone
抛出:
CloneNotSupportedException

containsKey

public boolean containsKey(char[] key)

get

public int get(char[] key)

put

public int put(char[] key,
               int value)

removeKey

public int removeKey(char[] key)

size

public int size()

toString

public String toString()
覆盖:
Object 中的 toString


Copyright © 2013. All Rights Reserved.