Uses of Class
com.github.robtimus.os.windows.registry.RegistryKey
-
-
Uses of RegistryKey in com.github.robtimus.os.windows.registry
Subclasses of RegistryKey in com.github.robtimus.os.windows.registry Modifier and Type Class Description class
RemoteRegistryKey
A representation of registry keys on a remote machine.Fields in com.github.robtimus.os.windows.registry declared as RegistryKey Modifier and Type Field Description static RegistryKey
RegistryKey. HKEY_CLASSES_ROOT
The HKEY_CLASSES_ROOT root key.static RegistryKey
RegistryKey. HKEY_CURRENT_CONFIG
The HKEY_CURRENT_CONFIG root key.static RegistryKey
RegistryKey. HKEY_CURRENT_USER
The HKEY_CURRENT_USER root key.static RegistryKey
RegistryKey. HKEY_LOCAL_MACHINE
The HKEY_LOCAL_MACHINE root key.static RegistryKey
RegistryKey. HKEY_USERS
The HKEY_USERS root key.Methods in com.github.robtimus.os.windows.registry that return RegistryKey Modifier and Type Method Description abstract RegistryKey
RegistryKey. renameTo(String newName)
Renames this registry key.abstract RegistryKey
RegistryKey. resolve(String relativePath)
Returns a registry key relative to this registry key.abstract RegistryKey
RegistryKey. root()
Returns the root of the registry key.Methods in com.github.robtimus.os.windows.registry that return types with arguments of type RegistryKey Modifier and Type Method Description abstract Optional<RegistryKey>
RegistryKey. parent()
Returns the parent registry key.Stream<RegistryKey>
RegistryKey.Handle. subKeys()
Returns all direct sub keys of the registry key from which this handle was retrieved.Stream<RegistryKey>
RegistryKey. subKeys()
Returns all direct sub keys of this registry key.Stream<RegistryKey>
RegistryKey. traverse(int maxDepth, RegistryKey.TraverseOption... options)
Returns aStream
that traverses through this registry keys and all of its nested keys.Stream<RegistryKey>
RegistryKey. traverse(RegistryKey.TraverseOption... options)
Returns aStream
that traverses through this registry keys and all of its nested keys.Methods in com.github.robtimus.os.windows.registry with parameters of type RegistryKey Modifier and Type Method Description int
RegistryKey. compareTo(RegistryKey key)
-