Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

solrdocument(3) [php man page]

SOLRDOCUMENT(3) 							 1							   SOLRDOCUMENT(3)

The SolrDocument class

INTRODUCTION
Represents a Solr document retrieved from a query response. CLASS SYNOPSIS
SolrDocument final SolrDocumentArrayAccessIteratorSerializable Constants o const integer$SolrDocument::SORT_DEFAULT1 o const integer$SolrDocument::SORT_ASC1 o const integer$SolrDocument::SORT_DESC2 o const integer$SolrDocument::SORT_FIELD_NAME1 o const integer$SolrDocument::SORT_FIELD_VALUE_COUNT2 o const integer$SolrDocument::SORT_FIELD_BOOST_VALUE4 Methods o public bool SolrDocument::addField (string $fieldName, string $fieldValue) o public bool SolrDocument::clear (void ) o public void SolrDocument::__clone (void ) o public SolrDocument::__construct (void ) o public SolrDocumentField SolrDocument::current (void ) o public bool SolrDocument::deleteField (string $fieldName) o public void SolrDocument::__destruct (void ) o public bool SolrDocument::fieldExists (string $fieldName) o public SolrDocumentField SolrDocument::__get (string $fieldName) o public SolrDocumentField SolrDocument::getField (string $fieldName) o public int SolrDocument::getFieldCount (void ) o public array SolrDocument::getFieldNames (void ) o public SolrInputDocument SolrDocument::getInputDocument (void ) o public bool SolrDocument::__isset (string $fieldName) o public string SolrDocument::key (void ) o public bool SolrDocument::merge (SolrDocument $sourceDoc, [bool $overwrite = true]) o public void SolrDocument::next (void ) o public bool SolrDocument::offsetExists (string $fieldName) o public SolrDocumentField SolrDocument::offsetGet (string $fieldName) o public void SolrDocument::offsetSet (string $fieldName, string $fieldValue) o public void SolrDocument::offsetUnset (string $fieldName) o public bool SolrDocument::reset (void ) o public void SolrDocument::rewind (void ) o public string SolrDocument::serialize (void ) o public bool SolrDocument::__set (string $fieldName, string $fieldValue) o public bool SolrDocument::sort (int $sortOrderBy, [int $sortDirection = SolrDocument::SORT_ASC]) o public array SolrDocument::toArray (void ) o public void SolrDocument::unserialize (string $serialized) o public bool SolrDocument::__unset (string $fieldName) o public bool SolrDocument::valid (void ) PREDEFINED CONSTANTS
o SolrDocument::SORT_DEFAULT -Default mode for sorting fields within the document. o SolrDocument::SORT_ASC -Sorts the fields in ascending order o SolrDocument::SORT_DESC -Sorts the fields in descending order o SolrDocument::SORT_FIELD_NAME -Sorts the fields by field name. o SolrDocument::SORT_FIELD_VALUE_COUNT -Sorts the fields by number of values in each field. o SolrDocument::SORT_FIELD_BOOST_VALUE -Sorts the fields by thier boost values. PHP Documentation Group SOLRDOCUMENT(3)

Check Out this Related Man Page

REFLECTIONFUNCTION(3)							 1						     REFLECTIONFUNCTION(3)

The ReflectionFunction class

INTRODUCTION
The ReflectionFunction class reports information about a function. CLASS SYNOPSIS
ReflectionFunction ReflectionFunctionextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionFunction::IS_DEPRECATED262144 Properties o public$name Methods o public ReflectionFunction::__construct (mixed $name) o publicstatic string ReflectionFunction::export (string $name, [string $return]) o public Closure ReflectionFunction::getClosure (void ) o public mixed ReflectionFunction::invoke ([mixed $parameter], [mixed $...]) o public mixed ReflectionFunction::invokeArgs (array $args) o public bool ReflectionFunction::isDisabled (void ) o public string ReflectionFunction::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name - Name of the function. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONFUNCTION MODIFIERS
o ReflectionFunction::IS_DEPRECATED - Indicates deprecated functions. PHP Documentation Group REFLECTIONFUNCTION(3)
Man Page