public enum QueryFormat extends Enum<QueryFormat>
Enum Constant and Description |
---|
CSV
Separate the values by a comma but keep a single query parameter.
|
MULTI
Create one query parameter per value.
|
Modifier and Type | Method and Description |
---|---|
static QueryFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryFormat CSV
public static final QueryFormat MULTI
public static QueryFormat[] values()
for (QueryFormat c : QueryFormat.values()) System.out.println(c);
public static QueryFormat 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 null1.30.0-SNAPSHOT - Copyright © 2019 Talend Component Kit Documentation