Package org.alfresco.solr
Enum AlfrescoSolrDataModel.ContentFieldType
- java.lang.Object
-
- java.lang.Enum<AlfrescoSolrDataModel.ContentFieldType>
-
- org.alfresco.solr.AlfrescoSolrDataModel.ContentFieldType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AlfrescoSolrDataModel.ContentFieldType>
- Enclosing class:
- AlfrescoSolrDataModel
public static enum AlfrescoSolrDataModel.ContentFieldType extends java.lang.Enum<AlfrescoSolrDataModel.ContentFieldType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCIDENCODINGLOCALEMIMETYPESIZETRANSFORMATION_EXCEPTIONTRANSFORMATION_STATUSTRANSFORMATION_TIME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AlfrescoSolrDataModel.ContentFieldTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AlfrescoSolrDataModel.ContentFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCID
public static final AlfrescoSolrDataModel.ContentFieldType DOCID
-
SIZE
public static final AlfrescoSolrDataModel.ContentFieldType SIZE
-
LOCALE
public static final AlfrescoSolrDataModel.ContentFieldType LOCALE
-
MIMETYPE
public static final AlfrescoSolrDataModel.ContentFieldType MIMETYPE
-
ENCODING
public static final AlfrescoSolrDataModel.ContentFieldType ENCODING
-
TRANSFORMATION_STATUS
public static final AlfrescoSolrDataModel.ContentFieldType TRANSFORMATION_STATUS
-
TRANSFORMATION_TIME
public static final AlfrescoSolrDataModel.ContentFieldType TRANSFORMATION_TIME
-
TRANSFORMATION_EXCEPTION
public static final AlfrescoSolrDataModel.ContentFieldType TRANSFORMATION_EXCEPTION
-
-
Method Detail
-
values
public static AlfrescoSolrDataModel.ContentFieldType[] 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 (AlfrescoSolrDataModel.ContentFieldType c : AlfrescoSolrDataModel.ContentFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlfrescoSolrDataModel.ContentFieldType 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
-
-