Class RegistryKey

    • Constructor Detail

      • RegistryKey

        public RegistryKey​(String namespaceUri,
                           String... key)
        For path /a/b/c and property 'x', put in
        "a", "b", "c", "x"
        The property can also be null as in
        "a", "b", "c", null
        Parameters:
        namespaceUri - the key namespace to use. If left null then the default will be used.
        key - the path elements followed by the property name.
      • RegistryKey

        public RegistryKey​(String namespaceUri,
                           String[] path,
                           String property)
        A constructor to specifically declare the path and property portions of the key.
        Parameters:
        namespaceUri - the key namespace to use. If left null then the default will be used.
        path - the path part of the key
        property - the property name for the key. This may be null.