Package org.apache.tika
Interface GetFetcherReplyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetFetcherReply,GetFetcherReply.Builder
public interface GetFetcherReplyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsParams(String key)The configuration parameters.StringgetFetcherClass()The full Java class name of the Fetcher.com.google.protobuf.ByteStringgetFetcherClassBytes()The full Java class name of the Fetcher.StringgetFetcherId()Echoes the ID of the fetcher being returned.com.google.protobuf.ByteStringgetFetcherIdBytes()Echoes the ID of the fetcher being returned.Map<String,String>getParams()Deprecated.intgetParamsCount()The configuration parameters.Map<String,String>getParamsMap()The configuration parameters.StringgetParamsOrDefault(String key, String defaultValue)The configuration parameters.StringgetParamsOrThrow(String key)The configuration parameters.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFetcherId
String getFetcherId()
Echoes the ID of the fetcher being returned.
string fetcher_id = 1;- Returns:
- The fetcherId.
-
getFetcherIdBytes
com.google.protobuf.ByteString getFetcherIdBytes()
Echoes the ID of the fetcher being returned.
string fetcher_id = 1;- Returns:
- The bytes for fetcherId.
-
getFetcherClass
String getFetcherClass()
The full Java class name of the Fetcher.
string fetcher_class = 2;- Returns:
- The fetcherClass.
-
getFetcherClassBytes
com.google.protobuf.ByteString getFetcherClassBytes()
The full Java class name of the Fetcher.
string fetcher_class = 2;- Returns:
- The bytes for fetcherClass.
-
getParamsCount
int getParamsCount()
The configuration parameters.
map<string, string> params = 3;
-
containsParams
boolean containsParams(String key)
The configuration parameters.
map<string, string> params = 3;
-
getParams
@Deprecated Map<String,String> getParams()
Deprecated.UsegetParamsMap()instead.
-
getParamsMap
Map<String,String> getParamsMap()
The configuration parameters.
map<string, string> params = 3;
-
getParamsOrDefault
String getParamsOrDefault(String key, String defaultValue)
The configuration parameters.
map<string, string> params = 3;
-
-