public static enum ProductFeed.EnumDelimiter extends Enum<ProductFeed.EnumDelimiter>
Enum Constant and Description |
---|
VALUE_AUTODETECT |
VALUE_BAR |
VALUE_COMMA |
VALUE_SEMICOLON |
VALUE_TAB |
VALUE_TILDE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ProductFeed.EnumDelimiter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProductFeed.EnumDelimiter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="AUTODETECT") public static final ProductFeed.EnumDelimiter VALUE_AUTODETECT
@SerializedName(value="BAR") public static final ProductFeed.EnumDelimiter VALUE_BAR
@SerializedName(value="COMMA") public static final ProductFeed.EnumDelimiter VALUE_COMMA
@SerializedName(value="SEMICOLON") public static final ProductFeed.EnumDelimiter VALUE_SEMICOLON
@SerializedName(value="TAB") public static final ProductFeed.EnumDelimiter VALUE_TAB
@SerializedName(value="TILDE") public static final ProductFeed.EnumDelimiter VALUE_TILDE
public static ProductFeed.EnumDelimiter[] values()
for (ProductFeed.EnumDelimiter c : ProductFeed.EnumDelimiter.values()) System.out.println(c);
public static ProductFeed.EnumDelimiter 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<ProductFeed.EnumDelimiter>
Copyright © 2023. All rights reserved.