public enum TagMethod extends Enum<TagMethod>
| Enum Constant and Description |
|---|
Automatic |
Explicit |
Implicit |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static TagMethod |
find(String value) |
static TagMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagMethod Unknown
public static final TagMethod Automatic
public static final TagMethod Explicit
public static final TagMethod Implicit
public static TagMethod[] values()
for (TagMethod c : TagMethod.values()) System.out.println(c);
public static TagMethod 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 © 2017. All rights reserved.