public enum HandshakeProperty extends Enum<HandshakeProperty>
| Enum Constant and Description |
|---|
GZIP |
PORT_IDENTIFIER |
REQUEST_EXPIRATION_MILLIS |
| Modifier and Type | Method and Description |
|---|---|
static HandshakeProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandshakeProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandshakeProperty GZIP
public static final HandshakeProperty PORT_IDENTIFIER
public static final HandshakeProperty REQUEST_EXPIRATION_MILLIS
public static HandshakeProperty[] values()
for (HandshakeProperty c : HandshakeProperty.values()) System.out.println(c);
public static HandshakeProperty 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 Apache NiFi (incubating). All rights reserved.