Package edu.upenn.seas.mstparser
Class Alphabet
- java.lang.Object
-
- edu.upenn.seas.mstparser.Alphabet
-
- All Implemented Interfaces:
Serializable
public class Alphabet extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidallowGrowth()booleancontains(Object entry)booleangrowthStopped()intlookupIndex(Object entry)Return -1 if entry isn't present.intsize()voidstopGrowth()Object[]toArray()
-
-
-
Method Detail
-
lookupIndex
public int lookupIndex(Object entry)
Return -1 if entry isn't present.
-
toArray
public Object[] toArray()
-
contains
public boolean contains(Object entry)
-
size
public int size()
-
stopGrowth
public void stopGrowth()
-
allowGrowth
public void allowGrowth()
-
growthStopped
public boolean growthStopped()
-
-