Class DefaultWindowsRegistry
- java.lang.Object
-
- net.rubygrapefruit.platform.internal.DefaultWindowsRegistry
-
- All Implemented Interfaces:
NativeIntegration,WindowsRegistry
public class DefaultWindowsRegistry extends Object implements WindowsRegistry
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.rubygrapefruit.platform.WindowsRegistry
WindowsRegistry.Key
-
-
Constructor Summary
Constructors Constructor Description DefaultWindowsRegistry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetStringValue(WindowsRegistry.Key key, String subkey, String valueName)Returns a registry key value as a String.List<String>getSubkeys(WindowsRegistry.Key key, String subkey)Lists the subkeys of a registry key.List<String>getValueNames(WindowsRegistry.Key key, String subkey)Lists the value names of a registry key.
-
-
-
Method Detail
-
getStringValue
public String getStringValue(WindowsRegistry.Key key, String subkey, String valueName) throws NativeException
Description copied from interface:WindowsRegistryReturns a registry key value as a String.- Specified by:
getStringValuein interfaceWindowsRegistry- Throws:
NativeException- On failure.MissingRegistryEntryException- When the requested key or value does not exist.
-
getSubkeys
public List<String> getSubkeys(WindowsRegistry.Key key, String subkey) throws NativeException
Description copied from interface:WindowsRegistryLists the subkeys of a registry key.- Specified by:
getSubkeysin interfaceWindowsRegistry- Throws:
NativeException- On failure.MissingRegistryEntryException- When the requested key does not exist.
-
getValueNames
public List<String> getValueNames(WindowsRegistry.Key key, String subkey) throws NativeException
Description copied from interface:WindowsRegistryLists the value names of a registry key.- Specified by:
getValueNamesin interfaceWindowsRegistry- Throws:
NativeException- On failure.MissingRegistryEntryException- When the requested key does not exist.
-
-