public enum MissingBehavior extends Enum<MissingBehavior>
Enum Constant and Description |
---|
CALL_CONST_MISSING |
CALL_METHOD_MISSING |
RETURN_MISSING |
Modifier and Type | Method and Description |
---|---|
static MissingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MissingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MissingBehavior RETURN_MISSING
public static final MissingBehavior CALL_CONST_MISSING
public static final MissingBehavior CALL_METHOD_MISSING
public static MissingBehavior[] values()
for (MissingBehavior c : MissingBehavior.values()) System.out.println(c);
public static MissingBehavior valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2001-2015 JRuby. All Rights Reserved.