Class NativeConfig
- java.lang.Object
-
- io.helidon.integrations.graal.nativeimage.extension.NativeConfig
-
public final class NativeConfig extends Object
A utility class to configure native image features. Currently uses System properties to control configuration. Each property is prefixed withhelidon.native
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
option(String name, boolean defaultValue)
Find a boolean option.
-
-
-
Method Detail
-
option
public static boolean option(String name, boolean defaultValue)
Find a boolean option.- Parameters:
name
- name of the option, prefixed withhelidon.native
by this methoddefaultValue
- default value to return if option is not found- Returns:
- value configured or default value
-
-