Package com.funnelback.plugin.docs.model
Enum ProductSubtopic.DataSources
- java.lang.Object
-
- java.lang.Enum<ProductSubtopic.DataSources>
-
- com.funnelback.plugin.docs.model.ProductSubtopic.DataSources
-
- All Implemented Interfaces:
ProductSubtopicCategory
,Serializable
,Comparable<ProductSubtopic.DataSources>
- Enclosing class:
- ProductSubtopic
public static enum ProductSubtopic.DataSources extends Enum<ProductSubtopic.DataSources> implements ProductSubtopicCategory
"Search data sources" product topic
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM
DATABASE
DELIMITED_TEXT
DIRECTORY
FILE_SYSTEM
JSON
SOCIAL_MEDIA
SQUIZ_CONNECT
SQUIZ_MATRIX
WEB
XML
-
Constructor Summary
Constructors Modifier Constructor Description private
DataSources(String topic)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTopic()
static ProductSubtopic.DataSources
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductSubtopic.DataSources[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM
public static final ProductSubtopic.DataSources CUSTOM
-
DATABASE
public static final ProductSubtopic.DataSources DATABASE
-
DIRECTORY
public static final ProductSubtopic.DataSources DIRECTORY
-
SOCIAL_MEDIA
public static final ProductSubtopic.DataSources SOCIAL_MEDIA
-
WEB
public static final ProductSubtopic.DataSources WEB
-
DELIMITED_TEXT
public static final ProductSubtopic.DataSources DELIMITED_TEXT
-
JSON
public static final ProductSubtopic.DataSources JSON
-
XML
public static final ProductSubtopic.DataSources XML
-
FILE_SYSTEM
public static final ProductSubtopic.DataSources FILE_SYSTEM
-
SQUIZ_CONNECT
public static final ProductSubtopic.DataSources SQUIZ_CONNECT
-
SQUIZ_MATRIX
public static final ProductSubtopic.DataSources SQUIZ_MATRIX
-
-
Field Detail
-
topic
private final String topic
-
-
Constructor Detail
-
DataSources
private DataSources(String topic)
-
-
Method Detail
-
values
public static ProductSubtopic.DataSources[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProductSubtopic.DataSources c : ProductSubtopic.DataSources.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductSubtopic.DataSources valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getTopic
public String getTopic()
- Specified by:
getTopic
in interfaceProductSubtopicCategory
-
-