org.apache.solr.client.solrj.response.PivotField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-solrj Show documentation
Show all versions of solr-solrj Show documentation
Apache Solr Solrj for jdk 1.5
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.solr.client.solrj.response;
import java.io.PrintStream;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
import org.apache.solr.common.util.NamedList;
public class PivotField implements Serializable
{
final String _field;
final Object _value;
final int _count;
final List _pivot;
final Map _statsInfo;
final Map _querycounts;
final List _ranges;
/**
* @deprecated Use {@link #PivotField(String,Object,int,List,Map,Map,List)} with null statsInfo
, queryCounts and ranges
*/
@Deprecated
public PivotField( String f, Object v, int count, List pivot) {
this(f, v, count, pivot, null, null, null);
}
public PivotField( String f, Object v, int count, List pivot, Map statsInfo, Map queryCounts, List ranges)
{
_field = f;
_value = v;
_count = count;
_pivot = pivot;
_statsInfo = statsInfo;
_querycounts= queryCounts;
_ranges= ranges;
}
public String getField() {
return _field;
}
public Object getValue() {
return _value;
}
public int getCount() {
return _count;
}
public List getPivot() {
return _pivot;
}
public Map getFieldStatsInfo() {
return _statsInfo;
}
public Map getFacetQuery() {
return _querycounts;
}
public List getFacetRanges() {
return _ranges;
}
@Override
public String toString()
{
return _field + ":" + _value + " ["+_count+"] "+_pivot;
}
public void write( PrintStream out, int indent )
{
for( int i=0; istats:[" );
for( FieldStatsInfo fieldStatsInfo : _statsInfo.values() ) {
out.print(fieldStatsInfo.toString());
out.print(",");
}
out.print("]");
}
out.println();
if(_querycounts != null) {
out.println(_querycounts.toString());
}
if(_ranges != null) {
out.println(_ranges.toString());
}
if( _pivot != null ) {
for( PivotField p : _pivot ) {
p.write( out, indent+1 );
}
}
}
}