Package com.saperion.rs.federatedsearch
Enum FederatedSearch.ConfigParameter
- java.lang.Object
-
- java.lang.Enum<FederatedSearch.ConfigParameter>
-
- com.saperion.rs.federatedsearch.FederatedSearch.ConfigParameter
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FederatedSearch.ConfigParameter>
- Enclosing class:
- FederatedSearch
public static enum FederatedSearch.ConfigParameter extends java.lang.Enum<FederatedSearch.ConfigParameter>
Configuration parameter used by this JAX-RS resource.- Author:
- sts
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCHIVEThe name of the DDC archive to be used by this federated search feed.DESCRIPTIONThe description of the federated search feed.DESCRIPTION_FIELDThe DDC field to be used as the result's description.GLOBAL_QUERYThe global query of the federated search feed.GLOBAL_QUERY_FIELDThe global query field of the federated search feed.NAMEThe name of the federated search feed.PUBLISHED_FIELDThe DDC field to be used as the result's published date.QUERY_SIZEThe size of query results of the federated search feed.QUERY_STRATEGYThe query strategy to build HQL queries from the users query.SPECIAL_QUERYThe special query of the federated search feed.TAGS_FIELDThe DDC field to be used as the result's tags.TITLE_FIELDThe DDC field to be used as the result's title.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FederatedSearch.ConfigParametervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FederatedSearch.ConfigParameter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final FederatedSearch.ConfigParameter NAME
The name of the federated search feed.
-
DESCRIPTION
public static final FederatedSearch.ConfigParameter DESCRIPTION
The description of the federated search feed.
-
ARCHIVE
public static final FederatedSearch.ConfigParameter ARCHIVE
The name of the DDC archive to be used by this federated search feed.
-
GLOBAL_QUERY
public static final FederatedSearch.ConfigParameter GLOBAL_QUERY
The global query of the federated search feed.
-
SPECIAL_QUERY
public static final FederatedSearch.ConfigParameter SPECIAL_QUERY
The special query of the federated search feed.
-
GLOBAL_QUERY_FIELD
public static final FederatedSearch.ConfigParameter GLOBAL_QUERY_FIELD
The global query field of the federated search feed.
-
QUERY_SIZE
public static final FederatedSearch.ConfigParameter QUERY_SIZE
The size of query results of the federated search feed.
-
TITLE_FIELD
public static final FederatedSearch.ConfigParameter TITLE_FIELD
The DDC field to be used as the result's title.
-
DESCRIPTION_FIELD
public static final FederatedSearch.ConfigParameter DESCRIPTION_FIELD
The DDC field to be used as the result's description.
-
PUBLISHED_FIELD
public static final FederatedSearch.ConfigParameter PUBLISHED_FIELD
The DDC field to be used as the result's published date.
-
TAGS_FIELD
public static final FederatedSearch.ConfigParameter TAGS_FIELD
The DDC field to be used as the result's tags.
-
QUERY_STRATEGY
public static final FederatedSearch.ConfigParameter QUERY_STRATEGY
The query strategy to build HQL queries from the users query.
-
-
Method Detail
-
values
public static FederatedSearch.ConfigParameter[] 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 (FederatedSearch.ConfigParameter c : FederatedSearch.ConfigParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FederatedSearch.ConfigParameter valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-