public enum AppType extends Enum<AppType>
Enum Constant and Description |
---|
ANDROID |
IOS |
WIN_APPX |
WIN_EXE |
WIN_MSI |
WIN_ZIP |
Modifier and Type | Method and Description |
---|---|
static AppType |
fromValue(int appTypeAsOrd) |
String |
getDisplayName() |
int |
getOrdinalValue() |
static AppType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppType IOS
public static final AppType ANDROID
public static final AppType WIN_EXE
public static final AppType WIN_MSI
public static final AppType WIN_ZIP
public static final AppType WIN_APPX
public static AppType[] values()
for (AppType c : AppType.values()) System.out.println(c);
public static AppType 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 int getOrdinalValue()
public static AppType fromValue(int appTypeAsOrd)
public String getDisplayName()
Copyright © 2016–2023. All rights reserved.