Package | Description |
---|---|
com.registry |
Contains all of the classes for reading and writing keys and values to the Windows Registry.
|
Modifier and Type | Class and Description |
---|---|
class |
RegBinaryValue
This class represents a named value of type REG_BINARY, REG_NONE, REG_LINK,
REG_RESOURCE_LIST, REG_FULL_RESOURCE_DESCRIPTOR, or REG_RESOURCE_REQUIREMENTS_LIST.
|
class |
RegDWORDValue
This class represents a named value of type REG_DWORD,
REG_DWORD_LITTLE_ENDIAN, or REG_DWORD_BIG_ENDIAN.
|
class |
RegMultiStringValue
This class represents a named value of type REG_MULTI_SZ.
|
class |
RegQWORDValue
This class represents a named value of type REG_QWORD or REG_QWORD_LITTLE_ENDIAN.
|
class |
RegStringValue
This class represents a named value of type REG_SZ or REG_EXPAND_SZ.
|
Modifier and Type | Method and Description |
---|---|
RegistryValue |
RegistryKey.getValue(String name)
|
RegistryValue |
RegistryKey.newValue(String name,
int type)
Creates a new value under
this with the specified
name and type. |
RegistryValue |
RegistryKey.newValue(String name,
ValueType type)
Creates a new value under
this with the specified
name and type. |
Modifier and Type | Method and Description |
---|---|
List<RegistryValue> |
RegistryKey.getValues()
Retrieves a list of
RegistryValue s which represent the values
that are under this . |
List<RegistryValue> |
RegistryKey.getValues(String... va)
Retrieves a list of
RegistryValue s which represent the values
that are named by va . |
Iterator<RegistryValue> |
RegistryKey.valuesIterator()
|
Modifier and Type | Method and Description |
---|---|
int |
RegistryValue.compareTo(RegistryValue o)
Implements the compareTo method in the interface
Comparable . |
int |
RegistryKey.copySubKeyValue(String subKey,
RegistryKey dest,
RegistryValue value)
Copies the registry value represented by
value within subKey to
the registry key dest . |
int |
RegistryKey.copySubKeyValues(String subKey,
RegistryKey dest,
RegistryValue... va)
Copies the set of registry values represented by
va within subKey to
the registry key dest . |
int |
RegistryKey.copyValue(RegistryKey dest,
RegistryValue value)
Copies the registry value represented by
value to
the registry key dest . |
int |
RegistryKey.copyValues(RegistryKey dest,
RegistryValue... va)
Copies the set of registry values represented by
va to
the registry key dest . |
int |
RegistryKey.deleteSubKeyValue(String subKey,
RegistryValue value)
Deletes a named value represented by
value
from subKey . |
int |
RegistryKey.deleteSubKeyValues(String subKey,
RegistryValue... va)
Deletes a set of named values represented by
va
from subKey . |
int |
RegistryKey.deleteValue(RegistryValue value)
Deletes a named value represented by
value
from this . |
int |
RegistryKey.deleteValues(RegistryValue... va)
Deletes a set of named values represented by
RegistryValues within va
from this . |
boolean |
RegistryKey.renameValue(RegistryValue old,
String newValueName)
Renames the value specified by
old to newValueName . |
Copyright © 2011, Yinon Michaeli. All rights reserved.