public enum DialogSubType extends Enum<DialogSubType>
DialogTextElement or DialogTextAreaElement
In some form factors, optimized input is provided for this subtype.| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static DialogSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialogSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="email") public static final DialogSubType EMAIL
@SerializedName(value="number") public static final DialogSubType NUMBER
@SerializedName(value="tel") public static final DialogSubType TEL
@SerializedName(value="url") public static final DialogSubType URL
public static DialogSubType[] values()
for (DialogSubType c : DialogSubType.values()) System.out.println(c);
public static DialogSubType 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()
Copyright © 2020. All rights reserved.