public static enum ClasspathInfo.PathKind extends Enum<ClasspathInfo.PathKind>
| Modifier and Type | Method and Description |
|---|---|
static ClasspathInfo.PathKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClasspathInfo.PathKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClasspathInfo.PathKind BOOT
public static final ClasspathInfo.PathKind COMPILE
public static final ClasspathInfo.PathKind SOURCE
public static final ClasspathInfo.PathKind OUTPUT
public static ClasspathInfo.PathKind[] values()
for (ClasspathInfo.PathKind c : ClasspathInfo.PathKind.values()) System.out.println(c);
public static ClasspathInfo.PathKind 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 nullBuilt on June 18 2013. | Portions Copyright 1997-2013 Oracle. All rights reserved.