Uses of Class
com.github.robtimus.os.windows.registry.RegistryValue
-
-
Uses of RegistryValue in com.github.robtimus.os.windows.registry
Subclasses of RegistryValue in com.github.robtimus.os.windows.registry Modifier and Type Class Description class
BinaryValue
A representation of binary registry values.class
DWordValue
A representation of DWORD registry values.class
FullResourceDescriptorValue
A representation of full resource descriptor registry values.class
LinkValue
A representation of link registry values.class
MultiStringValue
A representation of multi-string registry values.class
NoneValue
Represents registry values with no defined value types.class
QWordValue
A representation of QWORD registry values.class
ResourceListValue
A representation of resource list registry values.class
ResourceRequirementsListValue
A representation of resource requirements registry values.class
SettableRegistryValue
A representation of registry values that can be set.class
StringValue
A representation of string registry values.Methods in com.github.robtimus.os.windows.registry with type parameters of type RegistryValue Modifier and Type Method Description <V extends RegistryValue>
Optional<V>RegistryKey. findValue(String name, Class<V> valueType)
Tries to return a registry value.<V extends RegistryValue>
Optional<V>RegistryKey.Handle. findValue(String name, Class<V> valueType)
Tries to return a registry value.<V extends RegistryValue>
VRegistryKey. getValue(String name, Class<V> valueType)
Returns a registry value.<V extends RegistryValue>
VRegistryKey.Handle. getValue(String name, Class<V> valueType)
Returns a registry value.Methods in com.github.robtimus.os.windows.registry that return types with arguments of type RegistryValue Modifier and Type Method Description Stream<RegistryValue>
RegistryKey.Handle. values()
Returns all values of the registry key from which this handle was retrieved.Stream<RegistryValue>
RegistryKey.Handle. values(RegistryValue.Filter filter)
Returns all values of the registry key from which this handle was retrieved.Stream<RegistryValue>
RegistryKey. values()
Returns all values of this registry key.Stream<RegistryValue>
RegistryKey. values(RegistryValue.Filter filter)
Returns all values of this registry key.
-