|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Represents an enumerated type as described by JDK 1.5. Implementing classes are expected to provide the following methods:
public static final List<EnumType> VALUES;
public static <EnumType> valueOf(String s);
public static <EnumType> valueOf(int i);
public final List<EnumType> family();
public final String compareTo(Object o);
public final String equals(Object o);
public final int hashcode();
public String toString();
protected final Object clone(Object o) throws CloneNotSupportedException
protected final Object readResolve() throws ObjectStreamException;
- Author:
- Adrian Price
Method Summary
java.util.List
family()
Returns an immutable list of the members of the enumerated type.
int
value()
Returns the ordinal value.
Methods inherited from interface java.lang.Comparable
compareTo
Method Detail
value
public int value()
- Returns the ordinal value.
- Returns:
- Ordinal value.
family
public java.util.List family()
- Returns an immutable list of the members of the enumerated type.
- Returns:
- The family of allowed values.
Overview
Package
Class
Tree
Deprecated
Index
Help
PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
OBE-1.0 Copyright (C) 2002-2006 Adrian Price. All Rights Reserved.