com.jaeksoft.searchlib.crawler.file.database.FileItemFieldEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2008-2014 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSearchServer 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.crawler.file.database;
import com.jaeksoft.searchlib.crawler.ItemField;
import com.jaeksoft.searchlib.util.ExtensibleEnum;
public class FileItemFieldEnum extends ExtensibleEnum {
public final static FileItemFieldEnum INSTANCE = new FileItemFieldEnum();
public final ItemField repository = new ItemField(this, "repository");
public final ItemField uri = new ItemField(this, "uri");
public final ItemField directory = new ItemField(this, "directory");
public final ItemField subDirectory = new ItemField(this, "subDirectory");
public final ItemField lang = new ItemField(this, "lang");
public final ItemField langMethod = new ItemField(this, "langMethod");
public final ItemField parserStatus = new ItemField(this, "parserStatus");
public final ItemField fetchStatus = new ItemField(this, "fetchStatus");
public final ItemField indexStatus = new ItemField(this, "indexStatus");
public final ItemField crawlDate = new ItemField(this, "crawlDate");
public final ItemField fileSystemDate = new ItemField(this,
"fileSystemDate");
public final ItemField fileName = new ItemField(this, "fileName");
public final ItemField fileSize = new ItemField(this, "fileSize");
public final ItemField fileExtension = new ItemField(this, "fileExtension");
public final ItemField fileType = new ItemField(this, "fileType");
public final ItemField parser = new ItemField(this, "parser");
public final ItemField host = new ItemField(this, "host");
public final ItemField time = new ItemField(this, "time");
public final ItemField userAllow = new ItemField(this, "userAllow");
public final ItemField userDeny = new ItemField(this, "userDeny");
public final ItemField groupAllow = new ItemField(this, "groupAllow");
public final ItemField groupDeny = new ItemField(this, "groupDeny");
}