public enum Category extends Enum<Category>
Enum Constant and Description |
---|
CLI |
COMPILER |
COMPLIANCE |
DEBUG |
INVOKEDYNAMIC |
IR |
JAVA_INTEGRATION |
JIT |
MISCELLANEOUS |
NATIVE |
PARSER |
PROFILING |
THREADPOOL |
TRUFFLE |
Modifier and Type | Method and Description |
---|---|
String |
desc() |
String |
toString() |
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category PARSER
public static final Category COMPILER
public static final Category INVOKEDYNAMIC
public static final Category JIT
public static final Category IR
public static final Category TRUFFLE
public static final Category NATIVE
public static final Category THREADPOOL
public static final Category MISCELLANEOUS
public static final Category DEBUG
public static final Category JAVA_INTEGRATION
public static final Category PROFILING
public static final Category CLI
public static final Category COMPLIANCE
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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 String desc()
Copyright © 2001-2015 JRuby. All Rights Reserved.