Package com.funnelback.plugin.docs.model
Enum MarketplaceSubtype
- java.lang.Object
-
- java.lang.Enum<MarketplaceSubtype>
-
- com.funnelback.plugin.docs.model.MarketplaceSubtype
-
- All Implemented Interfaces:
Serializable
,Comparable<MarketplaceSubtype>
public enum MarketplaceSubtype extends Enum<MarketplaceSubtype>
Source documentation meta tag "marketplace-subtype"
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FACETED_NAVIGATION_SORT
FILTER
GATHERER
INDEXING
SEARCH_LIFECYCLE
SERVLET_FILTER
-
Constructor Summary
Constructors Modifier Constructor Description private
MarketplaceSubtype()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MarketplaceSubtype
valueOf(String name)
Returns the enum constant of this type with the specified name.static MarketplaceSubtype[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FACETED_NAVIGATION_SORT
public static final MarketplaceSubtype FACETED_NAVIGATION_SORT
-
FILTER
public static final MarketplaceSubtype FILTER
-
GATHERER
public static final MarketplaceSubtype GATHERER
-
INDEXING
public static final MarketplaceSubtype INDEXING
-
SERVLET_FILTER
public static final MarketplaceSubtype SERVLET_FILTER
-
SEARCH_LIFECYCLE
public static final MarketplaceSubtype SEARCH_LIFECYCLE
-
-
Field Detail
-
type
private final String type
-
-
Method Detail
-
values
public static MarketplaceSubtype[] 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 (MarketplaceSubtype c : MarketplaceSubtype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MarketplaceSubtype 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
-
-