public enum Environment extends Enum<Environment>
InstallationFile
.Enum Constant and Description |
---|
LINUX |
LINUX32 |
LINUX64 |
MAC |
WINDOWS |
WINDOWS32 |
WINDOWS64 |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Environment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Environment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="win") public static final Environment WINDOWS
@SerializedName(value="win32") public static final Environment WINDOWS32
@SerializedName(value="win64") public static final Environment WINDOWS64
@SerializedName(value="mac") public static final Environment MAC
@SerializedName(value="linux") public static final Environment LINUX
@SerializedName(value="linux32") public static final Environment LINUX32
@SerializedName(value="linux64") public static final Environment LINUX64
public static Environment[] values()
for (Environment c : Environment.values()) System.out.println(c);
public static Environment 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 nullpublic String toString()
toString
in class Enum<Environment>
Copyright © 2023 Cense Data Inc.. All rights reserved.