public static enum TaggerImpl.ReadStatus extends Enum<TaggerImpl.ReadStatus>
| Modifier and Type | Method and Description |
|---|---|
static TaggerImpl.ReadStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaggerImpl.ReadStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaggerImpl.ReadStatus SUCCESS
public static final TaggerImpl.ReadStatus EOF
public static final TaggerImpl.ReadStatus ERROR
public static TaggerImpl.ReadStatus[] values()
for (TaggerImpl.ReadStatus c : TaggerImpl.ReadStatus.values()) System.out.println(c);
public static TaggerImpl.ReadStatus 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.