Package com.ms.lang Previous
Previous
Microsoft Packages
Microsoft Packages
Index
Index
Next
Next

Class RegKeyEnumValueInt

Constructor , Method , Field

public class RegKeyEnumValueInt extends RegKeyEnumValue
{
	// Field
	public int value;

	// Constructor
	RegKeyEnumValueInt(String n, int t, int v);

	// Method
	public String toString();
}

This class is returned by the enum method of the RegKey class when a registry key of integer type is found.


Constructor


RegKeyEnumValueInt

RegKeyEnumValueInt(String n, int t, int v)

Creates the object and initializes the registry key name, type, and value.

ParameterDescription
n Name of the key.
t Type of key.
v Value of the key.


Method


toString

public String toString()

Creates a string that includes the name, value, and type of the registry key.

Return Value:

Returns the string.


Field

value
Integer value of the registry key.

See also Class RegKeyEnumValueInt.

Top© 1996 Microsoft Corporation. All rights reserved.