public enum MSyncFlag extends Enum<MSyncFlag>
| Enum Constant and Description |
|---|
MS_ASYNC
Sync memory asynchronously.
|
MS_INVALIDATE
Invalidate the caches.
|
MS_SYNC
Synchronous memory sync.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value()
This method is a getter for the value instance variable.
|
static MSyncFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MSyncFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MSyncFlag MS_ASYNC
public static final MSyncFlag MS_INVALIDATE
public static final MSyncFlag MS_SYNC
public static MSyncFlag[] values()
for (MSyncFlag c : MSyncFlag.values()) System.out.println(c);
public static MSyncFlag 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 nullpublic int value()
Copyright © 2024. All rights reserved.