public static enum TaggerImpl.Mode extends Enum<TaggerImpl.Mode>
| Modifier and Type | Method and Description |
|---|---|
static TaggerImpl.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaggerImpl.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaggerImpl.Mode TEST
public static final TaggerImpl.Mode LEARN
public static TaggerImpl.Mode[] values()
for (TaggerImpl.Mode c : TaggerImpl.Mode.values()) System.out.println(c);
public static TaggerImpl.Mode 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 © 2014–2021 码农场. All rights reserved.