public static enum DotNet.CompilerVersion extends Enum<DotNet.CompilerVersion>
| Enum Constant and Description |
|---|
Legacy32bit |
Legacy64bit |
NewDotNet |
| Modifier and Type | Method and Description |
|---|---|
static DotNet.CompilerVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DotNet.CompilerVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DotNet.CompilerVersion Legacy32bit
public static final DotNet.CompilerVersion Legacy64bit
public static final DotNet.CompilerVersion NewDotNet
public static DotNet.CompilerVersion[] values()
for (DotNet.CompilerVersion c : DotNet.CompilerVersion.values()) System.out.println(c);
public static DotNet.CompilerVersion 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 © 2021. All rights reserved.