Package io.quarkus.bootstrap.model
Interface JvmOption
- All Known Implementing Classes:
MutableBaseJvmOption,MutableStandardJvmOption,MutableXxJvmOption
public interface JvmOption
JVM option
-
Method Details
-
getName
String getName()Simple option name without dashes- Returns:
- simple option name without dashes
-
hasValue
default boolean hasValue()Checks whether an option has a value- Returns:
- true if an option has a value, otherwise - false
-
getValues
Collection<String> getValues()All the configured option values.- Returns:
- all the configured values
-
addToQuarkusExtensionProperties
Adds an option with its values as a property.- Parameters:
props- properties to add an argument to
-
toCliOptions
Returns command line representation of this option.- Returns:
- Java command line representation of this option
-