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

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

public final class SimpleSetOfCharArray
extends Object
implements Cloneable

A simple lookup table is a non-synchronized Hashtable, whose keys and values are char[]. It also uses linear probing to resolve collisions rather than a linked list of hash table entries.


字段摘要
 int elementSize
           
 int threshold
           
 char[][] values
           
 
构造方法摘要
SimpleSetOfCharArray()
           
SimpleSetOfCharArray(int size)
           
 
方法摘要
 Object add(char[] object)
           
 void asArray(Object[] copy)
           
 void clear()
           
 Object clone()
           
 char[] get(char[] object)
           
 boolean includes(char[] object)
           
 char[] remove(char[] object)
           
 String toString()
           
 
从类 java.lang.Object 继承的方法
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

字段详细信息

values

public char[][] values

elementSize

public int elementSize

threshold

public int threshold
构造方法详细信息

SimpleSetOfCharArray

public SimpleSetOfCharArray()

SimpleSetOfCharArray

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

add

public Object add(char[] object)

asArray

public void asArray(Object[] copy)

clear

public void clear()

clone

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

get

public char[] get(char[] object)

includes

public boolean includes(char[] object)

remove

public char[] remove(char[] object)

toString

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


Copyright © 2013. All Rights Reserved.