public enum RubyEvent extends Enum<RubyEvent>
| Enum Constant and Description | 
|---|
| A_CALL | 
| A_RETURN | 
| B_CALL | 
| B_RETURN | 
| C_CALL | 
| C_RETURN | 
| CALL | 
| CLASS | 
| COVERAGE | 
| END | 
| LINE | 
| RAISE | 
| RETURN | 
| THREAD_BEGIN | 
| THREAD_END | 
| Modifier and Type | Method and Description | 
|---|---|
| static RubyEvent | fromOrdinal(int value) | 
| int | getLineNumberOffset() | 
| String | getName() | 
| static RubyEvent | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RubyEvent[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RubyEvent LINE
public static final RubyEvent CLASS
public static final RubyEvent END
public static final RubyEvent CALL
public static final RubyEvent RETURN
public static final RubyEvent C_CALL
public static final RubyEvent C_RETURN
public static final RubyEvent B_CALL
public static final RubyEvent B_RETURN
public static final RubyEvent THREAD_BEGIN
public static final RubyEvent THREAD_END
public static final RubyEvent RAISE
public static final RubyEvent COVERAGE
public static final RubyEvent A_CALL
public static final RubyEvent A_RETURN
public static RubyEvent[] values()
for (RubyEvent c : RubyEvent.values()) System.out.println(c);
public static RubyEvent 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 nullpublic int getLineNumberOffset()
public String getName()
public static RubyEvent fromOrdinal(int value)
Copyright © 2001-2015 JRuby. All Rights Reserved.