public enum ClassLoaderMode extends java.lang.Enum<ClassLoaderMode>
Enum Constant and Description |
---|
SHARED |
SHARED_SOURCE |
UNIQUE |
Modifier and Type | Method and Description |
---|---|
static ClassLoaderMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassLoaderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassLoaderMode UNIQUE
public static final ClassLoaderMode SHARED
public static final ClassLoaderMode SHARED_SOURCE
public static ClassLoaderMode[] values()
for (ClassLoaderMode c : ClassLoaderMode.values()) System.out.println(c);
public static ClassLoaderMode 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 namejava.lang.NullPointerException
- if the argument is nullCopyright © 2001-2020 JRuby. All Rights Reserved.