Package io.quarkus.bootstrap.model
Interface JvmOptions
Collection of JVM arguments
-
Method Summary
Modifier and TypeMethodDescriptionCollection of JVM arguments.static JvmOptionsBuilderbuilder()Creates a new JVM arguments builder instance.default booleanisEmpty()Checks whether any JVM arguments have been configured.iterator()Iterator over the JVM arguments.default voidAdds all the configured JVM arguments as properties.Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
builder
Creates a new JVM arguments builder instance.- Returns:
- JVM arguments builder
-
asCollection
Collection<JvmOption> asCollection()Collection of JVM arguments.- Returns:
- collection of JVM arguments
-
iterator
Iterator over the JVM arguments. -
isEmpty
default boolean isEmpty()Checks whether any JVM arguments have been configured.- Returns:
- true if no argument was configured, otherwise - false
-
setAsExtensionDevModeProperties
Adds all the configured JVM arguments as properties.- Parameters:
props- properties to add the JVM arguments to
-