public enum TAG extends Enum<TAG>
| Enum Constant and Description |
|---|
ANDROID_TV |
ANDROID_WEAR |
DEFAULT |
GOOGLE_APIS |
NOT_DEFINED |
| Modifier and Type | Method and Description |
|---|---|
static TAG |
match(String name) |
String |
toString() |
static TAG |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TAG[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TAG NOT_DEFINED
public static final TAG DEFAULT
public static final TAG GOOGLE_APIS
public static final TAG ANDROID_TV
public static final TAG ANDROID_WEAR
public static TAG[] values()
for (TAG c : TAG.values()) System.out.println(c);
public static TAG 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 nullCopyright © 2015 JBoss by Red Hat. All rights reserved.