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

      void addToQuarkusExtensionProperties(Properties props)
      Adds an option with its values as a property.
      Parameters:
      props - properties to add an argument to
    • toCliOptions

      List<String> toCliOptions()
      Returns command line representation of this option.
      Returns:
      Java command line representation of this option