An abstract base class which represents a field of a document.
This class should not be directly instantiated.
def google.appengine.api.search.search.Field.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
value, |
|
|
|
language = None |
|
) |
| |
Initializer.
Args:
name: The name of the field. Field names must have maximum length
MAXIMUM_FIELD_NAME_LENGTH and match pattern "[A-Za-z][A-Za-z0-9_]*".
value: The value of the field which can be a str, unicode or date.
language: The ISO 693-1 two letter code of the language used in the value.
See http://www.sil.org/iso639-3/codes.asp?order=639_1&letter=%25 for a
list of valid codes. Correct specification of language code will assist
in correct tokenization of the field. If None is given, then the
language code of the document will be used.
Raises:
TypeError: If any of the parameters have invalid types, or an unknown
attribute is passed.
ValueError: If any of the parameters have invalid values.
def google.appengine.api.search.search.Field.language |
( |
|
self | ) |
|
Returns the code of the language the content in value is written in.
def google.appengine.api.search.search.Field.name |
( |
|
self | ) |
|
Returns the name of the field.
def google.appengine.api.search.search.Field.value |
( |
|
self | ) |
|
Returns the value of the field.
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/api/search/search.py