Uses of Class
com.jniwrapper.win32.registry.RegistryKey.RegistryAccessMode

Packages that use RegistryKey.RegistryAccessMode
com.jniwrapper.win32.registry The com.jniwrapper.win32.registry package contains classes for working with system registry. 
 

Uses of RegistryKey.RegistryAccessMode in com.jniwrapper.win32.registry
 

Fields in com.jniwrapper.win32.registry declared as RegistryKey.RegistryAccessMode
static RegistryKey.RegistryAccessMode RegistryKey.RegistryAccessMode.DEFAULT
          Default registry access mode.
static RegistryKey.RegistryAccessMode RegistryKey.RegistryAccessMode.WOW32
          Provides access to 32-bit registry keys from either a 32-bit or 64-bit application.
static RegistryKey.RegistryAccessMode RegistryKey.RegistryAccessMode.WOW64
          Provides access to 64-bit registry keys from either a 32-bit or 64-bit application.
 

Methods in com.jniwrapper.win32.registry that return RegistryKey.RegistryAccessMode
 RegistryKey.RegistryAccessMode RegistryKey.getRegistryAccessMode()
          Returns current registry access mode.
 

Methods in com.jniwrapper.win32.registry with parameters of type RegistryKey.RegistryAccessMode
 RegistryKey RegistryKey.createSubKey(java.lang.String subKey, boolean writable, RegistryKey.RegistryAccessMode accessMode)
          Creates a new subkey or opens an existing one, with write access as specified.
 RegistryKey RegistryKey.createSubKey(java.lang.String subKey, RegistryKey.RegistryAccessMode accessMode)
          Creates a new subkey or opens an existing one, with write access as specified.
 void RegistryKey.deleteSubKey(java.lang.String subKey, RegistryKey.RegistryAccessMode accessMode)
          Deletes the specified subkey is it doesn't include any subkeys.
 boolean RegistryKey.exists(java.lang.String name, RegistryKey.RegistryAccessMode accessMode)
          Checks if the specified subkey exists and can be opened.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, boolean writable, boolean quietly, RegistryKey.RegistryAccessMode accessMode)
          Opens a subkey by the specified name.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, boolean writable, RegistryKey.RegistryAccessMode accessMode)
          Opens a subkey by the specified name.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, RegistryKey.RegistryAccessMode accessMode)
          Opens a subkey by the specified name.