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