public static enum WindowsNativeUtil.CreateFileA_createMode extends Enum<WindowsNativeUtil.CreateFileA_createMode>
| Enum Constant and Description |
|---|
CREATE_ALWAYS |
CREATE_NEW |
OPEN_ALWAYS |
OPEN_EXISTING |
TRUNCATE_EXISTING |
| Modifier and Type | Method and Description |
|---|---|
static WindowsNativeUtil.CreateFileA_createMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowsNativeUtil.CreateFileA_createMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowsNativeUtil.CreateFileA_createMode CREATE_NEW
public static final WindowsNativeUtil.CreateFileA_createMode CREATE_ALWAYS
public static final WindowsNativeUtil.CreateFileA_createMode OPEN_ALWAYS
public static final WindowsNativeUtil.CreateFileA_createMode OPEN_EXISTING
public static final WindowsNativeUtil.CreateFileA_createMode TRUNCATE_EXISTING
public static WindowsNativeUtil.CreateFileA_createMode[] values()
for (WindowsNativeUtil.CreateFileA_createMode c : WindowsNativeUtil.CreateFileA_createMode.values()) System.out.println(c);
public static WindowsNativeUtil.CreateFileA_createMode 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 © 2023. All rights reserved.