|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Missing>
ovm.polyd.Missing
public enum Missing
The set of possible values for the OnMissing
tag.
Enum Constant Summary | |
---|---|
ABORT
when a method is not found, about immediately calling System.exit |
|
FAIL
when a method is not found, always throw a MissingMethodException |
|
IGNORE
always ignore the missing method |
|
STANDARD
refer to the handling specified in the dispatching policy |
|
WARN
always print a warning when a missing method is encountered |
Method Summary | |
---|---|
static Missing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Missing[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Missing STANDARD
public static final Missing IGNORE
public static final Missing WARN
public static final Missing FAIL
MissingMethodException
public static final Missing ABORT
System.exit
Method Detail |
---|
public static final Missing[] values()
for(Missing c : Missing.values()) System.out.println(c);
public static Missing valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |