java.util.Stack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cldc-1.1-stub Show documentation
Show all versions of cldc-1.1-stub Show documentation
Stub of the Connected Limited Device Configuration v1.1
The newest version!
package java.util;
/**
* @since CLDC 1.0
*/
public class Stack extends Vector {
public Stack() {}
public boolean empty() {
return false;
}
/**
* @throws EmptyStackException
*/
public Object peek() {
return null;
}
/**
* @throws EmptyStackException
*/
public Object pop() {
return null;
}
public Object push(Object item) {
return null;
}
public int search(Object o) {
return 0;
}
}