Searched defs:Enum (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DEnum.java60 public abstract class Enum<E extends Enum<E>> class in inherits:Comparable,Serializable
122 protected Enum(String name, int ordinal) { method in class:Enum
176 * Enum constants are only comparable to other enum constants of the
181 Enum<?> other = (Enum<?>)o;
182 Enum<E> self = this;
205 return (zuper == Enum.class) ? (Class<E>)clazz : (Class<E>)zuper;
235 public static <T extends Enum<T>> T valueOf(Class<T> enumType,
237 // Android-changed: Use a static BasicLruCache mapping Enum clas
[all...]

Completed in 48 milliseconds