public enum HttpStreamingType extends Enum<HttpStreamingType>
Enum Constant and Description |
---|
ALWAYS
Will always use streaming.
|
AUTO
Will stream based on the message content.
|
NEVER
Will never use streaming.
|
Modifier and Type | Method and Description |
---|---|
static HttpStreamingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpStreamingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpStreamingType AUTO
public static final HttpStreamingType ALWAYS
public static final HttpStreamingType NEVER
public static HttpStreamingType[] values()
for (HttpStreamingType c : HttpStreamingType.values()) System.out.println(c);
public static HttpStreamingType 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 © 2003–2016 MuleSoft, Inc.. All rights reserved.