01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.solr.schema;
17:
18: import org.apache.lucene.search.SortField;
19: import org.apache.lucene.document.Fieldable;
20: import org.apache.solr.request.XMLWriter;
21: import org.apache.solr.request.TextResponseWriter;
22:
23: import java.util.Map;
24: import java.io.IOException;
25:
26: /**
27: * @author yonik
28: * @version $Id: StrField.java 479793 2006-11-27 22:40:21Z klaas $
29: */
30: public class StrField extends CompressableField {
31: protected void init(IndexSchema schema, Map<String, String> args) {
32: super .init(schema, args);
33: }
34:
35: public SortField getSortField(SchemaField field, boolean reverse) {
36: return getStringSort(field, reverse);
37: }
38:
39: public void write(XMLWriter xmlWriter, String name, Fieldable f)
40: throws IOException {
41: xmlWriter.writeStr(name, f.stringValue());
42: }
43:
44: public void write(TextResponseWriter writer, String name,
45: Fieldable f) throws IOException {
46: writer.writeStr(name, f.stringValue(), true);
47: }
48: }
|