public enum AssemblyLoadType extends java.lang.Enum<AssemblyLoadType>
Enum Constant and Description |
---|
fileLocation
Assembly should be loaded from the specified file location.
|
GACByFullName
Assembly should be loaded from the Global Assembly Cache (GAC)
|
GACByPartialName
Assembly should be loaded using a partial assembly name instead of a full assembly string.
|
WSDL
Assembly should be loaded from Web Service Definition Language (WSDL).
|
Modifier and Type | Method and Description |
---|---|
static AssemblyLoadType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssemblyLoadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssemblyLoadType GACByFullName
public static final AssemblyLoadType GACByPartialName
public static final AssemblyLoadType fileLocation
public static final AssemblyLoadType WSDL
public static AssemblyLoadType[] values()
for (AssemblyLoadType c : AssemblyLoadType.values()) System.out.println(c);
public static AssemblyLoadType 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 null