public static enum HttpPartSchema.CollectionFormat extends Enum<HttpPartSchema.CollectionFormat>
Enum Constant and Description |
---|
CSV
Comma-separated values (e.g.
|
MULTI
Corresponds to multiple parameter instances instead of multiple values for a single instance (e.g.
|
NO_COLLECTION_FORMAT
Not specified.
|
PIPES
Pipe-separated values (e.g.
|
SSV
Space-separated values (e.g.
|
TSV
Tab-separated values (e.g.
|
UON
UON notation (e.g.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static HttpPartSchema.CollectionFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpPartSchema.CollectionFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpPartSchema.CollectionFormat CSV
public static final HttpPartSchema.CollectionFormat SSV
public static final HttpPartSchema.CollectionFormat TSV
public static final HttpPartSchema.CollectionFormat PIPES
public static final HttpPartSchema.CollectionFormat MULTI
public static final HttpPartSchema.CollectionFormat UON
public static final HttpPartSchema.CollectionFormat NO_COLLECTION_FORMAT
public static HttpPartSchema.CollectionFormat[] values()
for (HttpPartSchema.CollectionFormat c : HttpPartSchema.CollectionFormat.values()) System.out.println(c);
public static HttpPartSchema.CollectionFormat 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 nullpublic String toString()
toString
in class Enum<HttpPartSchema.CollectionFormat>
Copyright © 2016–2020 The Apache Software Foundation. All rights reserved.