(This is using the java.util.Stack)
In my code I got a value, lets say a string "1" and I want to put that at the bottom of this stack of numbers.
"4"
"3"
"2"
Now the methods I have for the java.util.Stack don't actually come with a way I can just send my value of "1" to the bottom of this stack, they instead only let me push the value to the top of the stack which isn't any good to me.
Is there a way I can send "1" to the bottom of this stack?