Uses of Class
com.github.robtimus.os.windows.registry.RegistryKey.HandleOption
-
-
Uses of RegistryKey.HandleOption in com.github.robtimus.os.windows.registry
Methods in com.github.robtimus.os.windows.registry that return RegistryKey.HandleOption Modifier and Type Method Description static RegistryKey.HandleOption
RegistryKey.HandleOption. valueOf(String name)
Returns the enum constant of this type with the specified name.static RegistryKey.HandleOption[]
RegistryKey.HandleOption. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.robtimus.os.windows.registry with parameters of type RegistryKey.HandleOption Modifier and Type Method Description RegistryKey.Handle
RegistryKey. handle(RegistryKey.HandleOption... options)
Creates a handle to this registry key.void
RegistryKey. ifAccessible(Consumer<? super RegistryKey.Handle> action, RegistryKey.HandleOption... options)
Runs an action on aRegistryKey.Handle
if this registry key is accessible.<R> Optional<R>
RegistryKey. ifAccessible(Function<? super RegistryKey.Handle,? extends R> action, RegistryKey.HandleOption... options)
Runs an action on aRegistryKey.Handle
if this registry key is accessible.void
RegistryKey. ifExists(Consumer<? super RegistryKey.Handle> action, RegistryKey.HandleOption... options)
Runs an action on aRegistryKey.Handle
if this registry key exists.<R> Optional<R>
RegistryKey. ifExists(Function<? super RegistryKey.Handle,? extends R> action, RegistryKey.HandleOption... options)
Runs an action on aRegistryKey.Handle
if this registry key exists.
-