Uses of Class
com.jniwrapper.win32.registry.RegistryKeyType

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

Uses of RegistryKeyType in com.jniwrapper.win32.registry
 

Fields in com.jniwrapper.win32.registry declared as RegistryKeyType
static RegistryKeyType RegistryKeyType.BINARY
           
static RegistryKeyType RegistryKeyType.DWORD
           
static RegistryKeyType RegistryKeyType.DWORD_BIG_ENDIAN
           
static RegistryKeyType RegistryKeyType.DWORD_LITTLE_ENDIAN
           
static RegistryKeyType RegistryKeyType.EXPAND_SZ
           
static RegistryKeyType RegistryKeyType.FULL_RESOURCE_DESCRIPTOR
           
static RegistryKeyType RegistryKeyType.LINK
           
static RegistryKeyType RegistryKeyType.MULTI_SZ
           
static RegistryKeyType RegistryKeyType.NONE
           
static RegistryKeyType RegistryKeyType.QWORD
           
static RegistryKeyType RegistryKeyType.RESOURCE_LIST
           
static RegistryKeyType RegistryKeyType.RESOURCE_REQUIREMENTS_LIST
           
static RegistryKeyType RegistryKeyType.SZ
           
 

Methods in com.jniwrapper.win32.registry that return RegistryKeyType
 RegistryKeyType RegistryKeyValues.RegistryValueEntry.getType()
           
 RegistryKeyType RegistryKeyValues.getType(java.lang.Object key)
          Get the type of specified value
 

Methods in com.jniwrapper.win32.registry with parameters of type RegistryKeyType
 java.lang.Object RegistryKeyValues.put(java.lang.Object key, java.lang.Object value, RegistryKeyType valueType)
           
static void RegistryKeyValues.registerAssociation(RegistryKeyType type, RegistryValueTransformer transformer)
          Associates a value transformer with a specified registry type.
 void RegistryKeyValues.RegistryValueEntry.setType(RegistryKeyType type)
           
 

Constructors in com.jniwrapper.win32.registry with parameters of type RegistryKeyType
RegistryKeyValues.RegistryValueEntry(java.lang.String name, RegistryKeyType type, int size)