Interface OptionsBean
-
- All Known Implementing Classes:
BlobStoreOptions
,CommonOptions
,DataStoreOptions
,DocumentNodeStoreOptions
,FlatFileCommand.FlatFileOptions
,IndexOptions
,RDBStoreOptions
,TikaCommandOptions
public interface OptionsBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
configure(joptsimple.OptionSet options)
String
description()
Description string for this set of optionsSet<String>
operationNames()
Option names which are actually performing operationint
order()
Used to sort the help output.String
title()
Title string for this set of options
-
-
-
Method Detail
-
configure
void configure(joptsimple.OptionSet options)
-
title
String title()
Title string for this set of options
-
description
String description()
Description string for this set of options
-
order
int order()
Used to sort the help output. Help for OptionsBean in descending order i.e. bean having highest order would be rendered first
-
-