cmssearchfieldmappingtype.java
来自「找了很久才找到到源代码」· Java 代码 · 共 134 行
JAVA
134 行
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/search/fields/CmsSearchFieldMappingType.java,v $
* Date : $Date: 2007-08-13 16:29:52 $
* Version: $Revision: 1.3 $
*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) 2002 - 2007 Alkacon Software GmbH (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about Alkacon Software, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.search.fields;
import org.opencms.util.A_CmsModeIntEnumeration;
import org.opencms.util.CmsStringUtil;
/**
* Describes a possible mapping type for a piece of content used in building a search index.<p>
*
* The mapping type is reponsible to select which content from the OpenCms resource is used for
* a field.<p>
*
* @author Alexander Kandzior
*
* @version $Revision: 1.3 $
*
* @since 7.0.0
*/
public final class CmsSearchFieldMappingType extends A_CmsModeIntEnumeration {
/** The "content" mapping type, maps the content of the resource (no parameters required). */
public static final CmsSearchFieldMappingType CONTENT = new CmsSearchFieldMappingType(0);
/** The "item" mapping type, maps the selected content item of the content. */
public static final CmsSearchFieldMappingType ITEM = new CmsSearchFieldMappingType(3);
/** The "property" mapping type, maps the selected property value of the resource. */
public static final CmsSearchFieldMappingType PROPERTY = new CmsSearchFieldMappingType(1);
/** The "property-search" mapping type, maps the selected property value of the resource with search upwards. */
public static final CmsSearchFieldMappingType PROPERTY_SEARCH = new CmsSearchFieldMappingType(2);
/** The "xpath" mapping type, only for {@link org.opencms.xml.content.CmsXmlContent} resources, maps the content from the given Xpath. */
public static final CmsSearchFieldMappingType XPATH = new CmsSearchFieldMappingType(4);
/** ID required for safe serialization. */
private static final long serialVersionUID = 7452814764681519516L;
/** String constant for the "content" type. */
private static final String STR_CONTENT = "content";
/** String constant for the "item" type. */
private static final String STR_ITEM = "item";
/** String constant for the "property" type. */
private static final String STR_PROPERTY = "property";
/** String constant for the "property-search" type. */
private static final String STR_PROPERTY_SEARCH = "property-search";
/**
* Hides the public constructor.<p>
*
* @param mode the mode constant to use
*/
private CmsSearchFieldMappingType(int mode) {
super(mode);
}
/**
* Returns the matching field mapping type, or <code>null</code> if the given value is
* not a valid mapping type name.<p>
*
* @param value the name of the mapping type
*
* @return the matching field mapping type
*/
public static CmsSearchFieldMappingType valueOf(String value) {
if (CmsStringUtil.isEmptyOrWhitespaceOnly(value)) {
return null;
}
value = value.trim().toLowerCase();
if (STR_CONTENT.equals(value)) {
return CONTENT;
} else if (STR_PROPERTY.equals(value)) {
return PROPERTY;
} else if (STR_PROPERTY_SEARCH.equals(value)) {
return PROPERTY_SEARCH;
} else if (STR_ITEM.equals(value)) {
return ITEM;
}
return null;
}
/**
* @see org.opencms.util.A_CmsModeIntEnumeration#toString()
*/
public String toString() {
switch (getMode()) {
case 1:
return STR_PROPERTY;
case 2:
return STR_PROPERTY_SEARCH;
case 3:
return STR_ITEM;
case 0:
default:
return STR_CONTENT;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?