Uses of Class
dev.civl.gmc.Option
Packages that use Option
Package
Description
The root package of generic model checking is used to construct model
checking applications, either sequential or concurrent.
A simple implementation of General Model Checker (GMC) is used by a set of
code coverage test cases.
-
Uses of Option in dev.civl.gmc
Methods in dev.civl.gmc that return OptionModifier and TypeMethodDescriptionReturns the option with the given name associated to this configuration, or null if there is none.static OptionOption.newMapOption(String name, String description) Returns a new option of type MAP with default value the empty map.static OptionOption.newScalarOption(String name, Option.OptionType type, String description, Object defaultValue) Methods in dev.civl.gmc that return types with arguments of type OptionModifier and TypeMethodDescriptionGMCConfiguration.getOptions()Returns the set of options associated to this configuration.Methods in dev.civl.gmc with parameters of type OptionModifier and TypeMethodDescriptionGMCSection.getMapEntry(Option option, String key) Given an option of map type, and a key, this returns the value associated to the key in the map associated to option.GMCSection.getMapValue(Option option) Gets the map value associated to an option of map type, or null if no value is associated to that option.Gets the value associated to an option or null if no value is associated to that option.GMCSection.getValueOrDefault(Option option) Returns the value associated to an option or the default value for that option if no value is associated to it.booleanDetermines whether the value associated to a boolean option should be construed as true in most circumstances.GMCSection.putMapEntry(Option option, String key, Object value) Given an option of map type, adds or removes the key-value pair to the map corresponding to that option.GMCSection.setMapValue(Option option, Map<String, Object> value) Sets map value or removes map entry from this configuration.GMCSection.setScalarValue(Option option, Object value) Adds the key-value pair for a scalar value to the parameter map.Constructor parameters in dev.civl.gmc with type arguments of type OptionModifierConstructorDescriptionCommandLineParser(Collection<Option> options) Constructs a new parser from the given collection of options.GMCConfiguration(Collection<Option> options) Constructs new configuration with the set of options obtained from the given collection. -
Uses of Option in dev.civl.gmc.smc
Methods in dev.civl.gmc.smc that return Option