Package com.ms.lang |
![]() Previous |
![]() Microsoft Packages |
![]() Index |
![]() Next |
public class RegKeyEnumValueString extends RegKeyEnumValue { // Field public String value; // Constructor RegKeyEnumValueString(String n, int t, String v); // Method public String toString(); }
This class is returned by the enum method of the RegKey class when a registry key of string type is found.
RegKeyEnumValueString(String n, int t, String v)Creates the object and initializes the registry key name, type, and value.
Parameter Description n Name of the key. t Type of key. v Value of the key.
public String toString()Creates a string that includes the name, value, and type of the registry key.
Return Value:
Returns the string.
See also Class RegKeyEnumValueString.