public enum ParentCL extends Enum<ParentCL>
| Enum Constant and Description |
|---|
Inherit
Наследовать текущий загрузчик
|
System
Системный загрузчик
|
| Modifier and Type | Method and Description |
|---|---|
static ParentCL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParentCL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParentCL Inherit
public static final ParentCL System
public static ParentCL[] values()
for (ParentCL c : ParentCL.values()) System.out.println(c);
public static ParentCL 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 © 2018. All rights reserved.