Package org.apache.johnzon.core
Class HStack<T>
- java.lang.Object
-
- org.apache.johnzon.core.HStack<T>
-
- All Implemented Interfaces:
Serializable
public class HStack<T> extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
HStack.Node<T>
-
Field Summary
Fields Modifier and Type Field Description private int
size
private HStack.Node<T>
topElement
-
Constructor Summary
Constructors Constructor Description HStack()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) T
peek()
(package private) T
pop()
(package private) void
push(T object)
(package private) int
size()
-
-
-
Field Detail
-
topElement
private HStack.Node<T> topElement
-
size
private int size
-
-