Package org.alfresco.solr.query
Enum AlfrescoDefaultTextFields
- java.lang.Object
-
- java.lang.Enum<AlfrescoDefaultTextFields>
-
- org.alfresco.solr.query.AlfrescoDefaultTextFields
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AlfrescoDefaultTextFields>
public enum AlfrescoDefaultTextFields extends java.lang.Enum<AlfrescoDefaultTextFields>
- Author:
- elia Default fields for a text search.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTENTDESCRIPTIONNAMETITLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFieldName()static AlfrescoDefaultTextFieldsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AlfrescoDefaultTextFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final AlfrescoDefaultTextFields NAME
-
TITLE
public static final AlfrescoDefaultTextFields TITLE
-
DESCRIPTION
public static final AlfrescoDefaultTextFields DESCRIPTION
-
CONTENT
public static final AlfrescoDefaultTextFields CONTENT
-
-
Method Detail
-
values
public static AlfrescoDefaultTextFields[] 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 (AlfrescoDefaultTextFields c : AlfrescoDefaultTextFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlfrescoDefaultTextFields 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
-
getFieldName
public java.lang.String getFieldName()
-
-