public static enum ProtocolDetector.Result extends Enum<ProtocolDetector.Result>
| Enum Constant and Description |
|---|
NEED_MORE_DATA |
RECOGNIZED |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static ProtocolDetector.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProtocolDetector.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtocolDetector.Result RECOGNIZED
public static final ProtocolDetector.Result UNRECOGNIZED
public static final ProtocolDetector.Result NEED_MORE_DATA
public static ProtocolDetector.Result[] values()
for (ProtocolDetector.Result c : ProtocolDetector.Result.values()) System.out.println(c);
public static ProtocolDetector.Result 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 © 2011–2020 The Apache Software Foundation. All rights reserved.