Package | Description |
---|---|
edu.wisc.ssec.mcidasv.startupmanager.options |
Modifier and Type | Field and Description |
---|---|
private OptionMaster.OptionPlatform |
AbstractOption.optionPlatform |
Modifier and Type | Method and Description |
---|---|
protected OptionMaster.OptionPlatform |
OptionMaster.convertToOptionPlatform()
Converts a
Platform to its corresponding
OptionMaster.OptionPlatform type. |
OptionMaster.OptionPlatform |
Option.getOptionPlatform() |
OptionMaster.OptionPlatform |
AbstractOption.getOptionPlatform()
Returns the platform(s) to which this option applies.
|
static OptionMaster.OptionPlatform |
OptionMaster.OptionPlatform.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionMaster.OptionPlatform[] |
OptionMaster.OptionPlatform.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
List<Option> |
OptionMaster.optionsByPlatform(Collection<OptionMaster.OptionPlatform> platforms)
Returns the
Options applicable to the given
OptionPlatforms . |
Constructor and Description |
---|
AbstractOption(String id,
String label,
OptionMaster.Type optionType,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility)
Creates an option that can hold a specified sort of data and that
applies to a given platform.
|
BooleanOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
DirectoryOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
FileOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform platform,
OptionMaster.Visibility visibility)
Create a new "file option" that allows the user to select
a file.
|
LoggerLevelOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility)
Create a startup option that allows the user to manipulate the global
McIDAS-V logging level.
|
MemoryOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
SliderOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
TextOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility)
Create a startup option that allows the user to supply arbitrary text.
|