public class HashTableStack extends Object
Modifier and Type | Class and Description |
---|---|
protected static class |
HashTableStack.Link
To store the hashtables.
|
Modifier and Type | Field and Description |
---|---|
protected HashTableStack.Link |
current
The current link.
|
Constructor and Description |
---|
HashTableStack()
Creates a new HashTableStack object.
|
Modifier and Type | Method and Description |
---|---|
String |
get(String s)
Gets an item in the table on the top of the stack.
|
void |
pop()
Removes the table on the top of the stack.
|
void |
push()
Pushes a new table on the stack.
|
String |
put(String s,
String v)
Creates a mapping in the table on the top of the stack.
|
protected HashTableStack.Link current
Copyright © 2000–2023 Apache Software Foundation. All rights reserved.