public enum AppTypeType extends Enum<AppTypeType>
Clase Java para AppTypeType.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="AppTypeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="App"/>
<enumeration value="Widget"/>
<enumeration value="Capability"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
APP |
CAPABILITY |
WIDGET |
| Modifier and Type | Method and Description |
|---|---|
static AppTypeType |
fromValue(String v) |
String |
value() |
static AppTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppTypeType APP
public static final AppTypeType WIDGET
public static final AppTypeType CAPABILITY
public static AppTypeType[] values()
for (AppTypeType c : AppTypeType.values()) System.out.println(c);
public static AppTypeType 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 AppTypeType fromValue(String v)
Copyright © 2015. All Rights Reserved.