java.util.Date 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;
public class Date {
public Date() {}
public Date(long date) {}
public boolean equals(Object obj) {
return false;
}
public long getTime() {
return 0;
}
public int hashCode() {
return 0;
}
public void setTime(long time) {}
/**
* @since CLDC 1.1
*/
public String toString() {
return null;
}
}