|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xml.serializer.utils.BoolStack
Simple stack for boolean values. This class is a copy of the one in org.apache.xml.utils. It exists to cut the serializers dependancy on that package. A minor changes from that package are: doesn't implement Clonable This class is not a public API, it is only public because it is used in org.apache.xml.serializer.
Constructor Summary | |
BoolStack()
Default constructor. |
|
BoolStack(int size)
Construct a IntVector, using the given block size. |
Method Summary | |
void |
clear()
Clears the stack. |
boolean |
isEmpty()
Tests if this stack is empty. |
boolean |
peek()
Looks at the object at the top of this stack without removing it from the stack. |
boolean |
peekOrFalse()
Looks at the object at the top of this stack without removing it from the stack. |
boolean |
peekOrTrue()
Looks at the object at the top of this stack without removing it from the stack. |
boolean |
pop()
Removes the object at the top of this stack and returns that object as the value of this function. |
boolean |
popAndTop()
Removes the object at the top of this stack and returns the next object at the top as the value of this function. |
boolean |
push(boolean val)
Pushes an item onto the top of this stack. |
void |
setTop(boolean b)
Set the item at the top of this stack |
int |
size()
Get the length of the list. |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public BoolStack()
public BoolStack(int size)
size
- array size to allocateMethod Detail |
public final int size()
public final void clear()
public final boolean push(boolean val)
val
- the boolean to be pushed onto this stack.item
argument.public final boolean pop()
public final boolean popAndTop()
public final void setTop(boolean b)
b
- Object to set at the top of this stackpublic final boolean peek()
public final boolean peekOrFalse()
public final boolean peekOrTrue()
public boolean isEmpty()
true
if this stack is empty;
false
otherwise.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |