Serialized Form
-
Package org.apache.solr.api
-
Class org.apache.solr.api.ApiBag.ExceptionWithErrObject extends SolrException implements Serializable
-
-
Package org.apache.solr.client.solrj.embedded
-
Class org.apache.solr.client.solrj.embedded.EmbeddedSolrServer extends SolrClient implements Serializable
-
Serialized Fields
-
_parser
SolrRequestParsers _parser
-
coreContainer
CoreContainer coreContainer
-
coreName
String coreName
-
-
-
Class org.apache.solr.client.solrj.embedded.JettySolrRunner.Servlet404 extends javax.servlet.http.HttpServlet implements Serializable
-
-
Package org.apache.solr.cloud
-
Class org.apache.solr.cloud.OverseerSolrResponse extends SolrResponse implements Serializable
-
Serialized Fields
-
elapsedTime
long elapsedTime
-
responseList
NamedList responseList
-
-
-
Class org.apache.solr.cloud.ZkController.NotInClusterStateException extends SolrException implements Serializable
-
Class org.apache.solr.cloud.ZkController.ResourceModifiedInZkException extends SolrException implements Serializable
-
-
Package org.apache.solr.cloud.api.collections
-
Class org.apache.solr.cloud.api.collections.Assign.AssignmentException extends RuntimeException implements Serializable
-
-
Package org.apache.solr.cloud.autoscaling
-
Class org.apache.solr.cloud.autoscaling.TriggerActionException extends Exception implements Serializable
-
Class org.apache.solr.cloud.autoscaling.TriggerValidationException extends Exception implements Serializable
-
-
Package org.apache.solr.core
-
Class org.apache.solr.core.RequestParams.VersionedParams extends MapSolrParams implements Serializable
-
Serialized Fields
-
paramSet
RequestParams.ParamSet paramSet
-
-
-
Class org.apache.solr.core.SolrCoreInitializationException extends SolrException implements Serializable
-
Class org.apache.solr.core.SolrResourceNotFoundException extends IOException implements Serializable
-
-
Package org.apache.solr.handler
-
Class org.apache.solr.handler.AnalyzeEvaluator extends SourceEvaluator implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.solr.handler.CalciteJDBCStream extends JDBCStream implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.solr.handler.CdcrReplicator.CdcrReplicatorException extends Exception implements Serializable
-
Serialized Fields
-
req
UpdateRequest req
-
rsp
UpdateResponse rsp
-
-
-
Class org.apache.solr.handler.ClassifyStream extends TupleStream implements Serializable
-
Serialized Fields
-
analyzer
org.apache.lucene.analysis.Analyzer analyzer
-
analyzerField
String analyzerField
-
docStream
TupleStream docStream
-
field
String field
-
idfs
List<Double> idfs
-
modelStream
TupleStream modelStream
-
modelTuple
Tuple modelTuple
-
modelWeights
List<Double> modelWeights
-
termToIndex
Map<CharSequence,Integer> termToIndex
-
-
-
Class org.apache.solr.handler.GraphHandler.DummyErrorStream extends TupleStream implements Serializable
-
Serialized Fields
-
e
Exception e
-
-
-
Class org.apache.solr.handler.GraphHandler.TimerStream extends TupleStream implements Serializable
-
Serialized Fields
-
begin
long begin
-
tupleStream
TupleStream tupleStream
-
-
-
Class org.apache.solr.handler.HaversineMetersEvaluator extends RecursiveEvaluator implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.solr.handler.HaversineMetersEvaluator.HaversineDistance extends Object implements Serializable
- serialVersionUID:
- -9108154600539125566L
-
Class org.apache.solr.handler.SolrDefaultStreamFactory extends DefaultStreamFactory implements Serializable
-
Serialized Fields
-
solrResourceLoader
SolrResourceLoader solrResourceLoader
-
-
-
Class org.apache.solr.handler.StreamHandler.DaemonCollectionStream extends TupleStream implements Serializable
-
Serialized Fields
-
it
Iterator<DaemonStream> it
-
-
-
Class org.apache.solr.handler.StreamHandler.DaemonResponseStream extends TupleStream implements Serializable
-
Serialized Fields
-
message
String message
-
sendEOF
boolean sendEOF
-
-
-
Class org.apache.solr.handler.StreamHandler.DummyErrorStream extends TupleStream implements Serializable
-
Serialized Fields
-
e
Exception e
-
-
-
Class org.apache.solr.handler.StreamHandler.TimerStream extends TupleStream implements Serializable
-
Serialized Fields
-
begin
long begin
-
tupleStream
TupleStream tupleStream
-
-
-
-
Package org.apache.solr.handler.export
-
Class org.apache.solr.handler.export.ExportWriter.IgnoreException extends IOException implements Serializable
-
-
Package org.apache.solr.internal.csv
-
Class org.apache.solr.internal.csv.CSVStrategy extends Object implements Serializable
-
Serialized Fields
-
commentStart
char commentStart
-
delimiter
char delimiter
-
encapsulator
char encapsulator
-
escape
char escape
-
ignoreEmptyLines
boolean ignoreEmptyLines
-
ignoreLeadingWhitespaces
boolean ignoreLeadingWhitespaces
-
ignoreTrailingWhitespaces
boolean ignoreTrailingWhitespaces
-
interpretUnicodeEscapes
boolean interpretUnicodeEscapes
-
printerNewline
String printerNewline
-
-
-
-
Package org.apache.solr.parser
-
Class org.apache.solr.parser.ParseException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
currentToken
Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token. -
eol
String eol
The end of line string for this machine. -
expectedTokenSequences
int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse. -
tokenImage
String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.
-
-
Class org.apache.solr.parser.Token extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
beginColumn
int beginColumn
The column number of the first character of this Token. -
beginLine
int beginLine
The line number of the first character of this Token. -
endColumn
int endColumn
The column number of the last character of this Token. -
endLine
int endLine
The line number of the last character of this Token. -
image
String image
The string image of the token. -
kind
int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java. -
next
Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field. -
specialToken
Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.
-
-
Class org.apache.solr.parser.TokenMgrError extends Error implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorCode
int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.
-
-
-
Package org.apache.solr.schema
-
Class org.apache.solr.schema.ManagedIndexSchema.FieldExistsException extends SolrException implements Serializable
-
Class org.apache.solr.schema.ManagedIndexSchema.SchemaChangedInZkException extends SolrException implements Serializable
-
-
Package org.apache.solr.search
-
Class org.apache.solr.search.EarlyTerminatingCollectorException extends RuntimeException implements Serializable
- serialVersionUID:
- 5939241340763428118L
-
Serialized Fields
-
numberCollected
int numberCollected
-
numberScanned
int numberScanned
-
-
Class org.apache.solr.search.QueryContext extends IdentityHashMap implements Serializable
-
Serialized Fields
-
closeHooks
IdentityHashMap<Closeable,String> closeHooks
-
indexSearcher
org.apache.lucene.search.IndexSearcher indexSearcher
-
searcher
SolrIndexSearcher searcher
-
-
-
Class org.apache.solr.search.SyntaxError extends Exception implements Serializable
-
-
Package org.apache.solr.security
-
Class org.apache.solr.security.JWTPrincipal extends Object implements Serializable
- serialVersionUID:
- 4144666467522831388L
-
Class org.apache.solr.security.JWTPrincipalWithUserRoles extends JWTPrincipal implements Serializable
-
-
Package org.apache.solr.servlet
-
Class org.apache.solr.servlet.LoadAdminUiServlet extends org.apache.solr.servlet.BaseSolrServlet implements Serializable
-
Class org.apache.solr.servlet.RedirectServlet extends org.apache.solr.servlet.BaseSolrServlet implements Serializable
-
Serialized Fields
-
code
int code
-
destination
String destination
-
-
-
-
Package org.apache.solr.update
-
Class org.apache.solr.update.SolrCoreState.CoreIsClosedException extends AlreadyClosedException implements Serializable
-
-
Package org.apache.solr.update.processor
-
Class org.apache.solr.update.processor.DistributedUpdateProcessor.DistributedUpdatesAsyncException extends SolrException implements Serializable
-
Serialized Fields
-
errors
List<SolrCmdDistributor.Error> errors
-
-
-
-
Package org.apache.solr.util
-
Class org.apache.solr.util.BoundedTreeSet extends TreeSet<E> implements Serializable
-
Serialized Fields
-
maxSize
int maxSize
-
-
-
Class org.apache.solr.util.MockSearchableSolrClient extends SolrClient implements Serializable
-
Serialized Fields
-
docs
Map<String,Map<String,SolrInputDocument>> docs
-
-
-
Class org.apache.solr.util.SolrCLI.AssertionFailureException extends Exception implements Serializable
-
Class org.apache.solr.util.TestInjection.TestShutdownFailError extends OutOfMemoryError implements Serializable
-