public static enum Linker.LinkType extends Enum<Linker.LinkType>
| Enum Constant and Description |
|---|
EXECUTABLE |
MACH_O_BUNDLE |
SHARED |
| Modifier and Type | Method and Description |
|---|---|
static Linker.LinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Linker.LinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Linker.LinkType EXECUTABLE
public static final Linker.LinkType SHARED
public static final Linker.LinkType MACH_O_BUNDLE
public static Linker.LinkType[] values()
for (Linker.LinkType c : Linker.LinkType.values()) System.out.println(c);
public static Linker.LinkType 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 null