Interface RegistryKey

All Known Implementing Classes:
IdentifiedRegistryKey, NamespacedRegistryKey, TypeRegistryKey

public interface RegistryKey
The RegistryKey interface represents a key that can be used within a Registry to identify and access registered values.

The RegistryKey is a marker interface for different types of keys that can be used in a registry. Implementations of this interface define unique ways to identify entries in a registry. The key could be either identified by a unique identifier or by a namespace and key combination.

This interface provides static factory methods to easily create two types of registry keys:

  • Identified keys with a unique identifier (e.g., "someKey")
  • Namespaced keys that have both a namespace and a key (e.g., "namespace:key")
See Also: