public enum TaxonomyFormat extends Enum<TaxonomyFormat>
| Enum Constant and Description |
|---|
csv
Retrieves CSV, and the only response property populated will be the
Taxonomy.CsvOutput |
json
Retrieves JSON, and all the response properties will be populated except the
Taxonomy.CsvOutput |
| Modifier and Type | Method and Description |
|---|---|
static TaxonomyFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxonomyFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxonomyFormat json
Taxonomy.CsvOutputpublic static final TaxonomyFormat csv
Taxonomy.CsvOutputpublic static TaxonomyFormat[] values()
for (TaxonomyFormat c : TaxonomyFormat.values()) System.out.println(c);
public static TaxonomyFormat 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 © 2024. All rights reserved.