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.NONE
           
static RegistryKeyType RegistryKeyType.SZ
           
static RegistryKeyType RegistryKeyType.EXPAND_SZ
           
static RegistryKeyType RegistryKeyType.BINARY
           
static RegistryKeyType RegistryKeyType.DWORD
           
static RegistryKeyType RegistryKeyType.DWORD_LITTLE_ENDIAN
           
static RegistryKeyType RegistryKeyType.DWORD_BIG_ENDIAN
           
static RegistryKeyType RegistryKeyType.LINK
           
static RegistryKeyType RegistryKeyType.MULTI_SZ
           
static RegistryKeyType RegistryKeyType.RESOURCE_LIST
           
static RegistryKeyType RegistryKeyType.FULL_RESOURCE_DESCRIPTOR
           
static RegistryKeyType RegistryKeyType.RESOURCE_REQUIREMENTS_LIST
           
static RegistryKeyType RegistryKeyType.QWORD
           
 

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

Methods in com.jniwrapper.win32.registry with parameters of type RegistryKeyType
static void RegistryKeyValues.registerAssociation(RegistryKeyType type, RegistryValueTransformer transformer)
          Associates a value transformer with a specified registry type.
 java.lang.Object RegistryKeyValues.put(java.lang.Object key, java.lang.Object value, RegistryKeyType valueType)
           
 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)