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 classBinaryValueA representation of binary registry values.classDWordValueA representation of DWORD registry values.classFullResourceDescriptorValueA representation of full resource descriptor registry values.classLinkValueA representation of link registry values.classMultiStringValueA representation of multi-string registry values.classNoneValueRepresents registry values with no defined value types.classQWordValueA representation of QWORD registry values.classResourceListValueA representation of resource list registry values.classResourceRequirementsListValueA representation of resource requirements registry values.classSettableRegistryValueA representation of registry values that can be set.classStringValueA 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.
-