public enum PlatformType extends Enum<PlatformType>
Java class for PlatformType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PlatformType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Not Specified"/>
<enumeration value="Windows"/>
<enumeration value="Solaris"/>
<enumeration value="Linux"/>
<enumeration value="Java"/>
<enumeration value="Windows Mobile"/>
<enumeration value="J2ME"/>
<enumeration value="ColdFusion"/>
<enumeration value="PHP"/>
<enumeration value="Android"/>
<enumeration value="iOS"/>
<enumeration value="Ruby"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ANDROID |
COLD_FUSION |
I_OS |
J_2_ME |
JAVA |
LINUX |
NOT_SPECIFIED |
PHP |
RUBY |
SOLARIS |
WINDOWS |
WINDOWS_MOBILE |
| Modifier and Type | Method and Description |
|---|---|
static PlatformType |
fromValue(String v) |
String |
value() |
static PlatformType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformType NOT_SPECIFIED
public static final PlatformType WINDOWS
public static final PlatformType SOLARIS
public static final PlatformType LINUX
public static final PlatformType JAVA
public static final PlatformType WINDOWS_MOBILE
public static final PlatformType J_2_ME
public static final PlatformType COLD_FUSION
public static final PlatformType PHP
public static final PlatformType ANDROID
public static final PlatformType I_OS
public static final PlatformType RUBY
public static PlatformType[] values()
for (PlatformType c : PlatformType.values()) System.out.println(c);
public static PlatformType 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 value()
public static PlatformType fromValue(String v)
Copyright © 2004-2013. All Rights Reserved.