public static enum RegistryExporter.Format extends Enum<RegistryExporter.Format>
Specifies the type of format to use when saving registry information.
Enum Constant and Description |
---|
REGEDIT4
The old format that is used on Windows 9x/NT.
|
REGEDIT5
The new format that is used on Windows 2000/XP/Vista/7.
|
TEXT
A text format which is used to give some information
about the keys that were saved such the last time
the key was written to and also its class name
if one was set.
|
Modifier and Type | Method and Description |
---|---|
static RegistryExporter.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistryExporter.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryExporter.Format REGEDIT5
REGEDIT4
public static final RegistryExporter.Format REGEDIT4
REGEDIT5
public static final RegistryExporter.Format TEXT
public static RegistryExporter.Format[] values()
for (RegistryExporter.Format c : RegistryExporter.Format.values()) System.out.println(c);
public static RegistryExporter.Format valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2011, Yinon Michaeli. All rights reserved.