org.xvolks.jnative.util
Enum Kernel32.PageAccess
java.lang.Object
java.lang.Enum<Kernel32.PageAccess>
org.xvolks.jnative.util.Kernel32.PageAccess
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Kernel32.PageAccess>
- Enclosing class:
- Kernel32
public static enum Kernel32.PageAccess
- extends java.lang.Enum<Kernel32.PageAccess>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
PAGE_NOACCESS
public static final Kernel32.PageAccess PAGE_NOACCESS
PAGE_READONLY
public static final Kernel32.PageAccess PAGE_READONLY
PAGE_READWRITE
public static final Kernel32.PageAccess PAGE_READWRITE
PAGE_WRITECOPY
public static final Kernel32.PageAccess PAGE_WRITECOPY
PAGE_EXECUTE
public static final Kernel32.PageAccess PAGE_EXECUTE
PAGE_EXECUTE_READ
public static final Kernel32.PageAccess PAGE_EXECUTE_READ
PAGE_EXECUTE_READWRITE
public static final Kernel32.PageAccess PAGE_EXECUTE_READWRITE
PAGE_EXECUTE_WRITECOPY
public static final Kernel32.PageAccess PAGE_EXECUTE_WRITECOPY
PAGE_GUARD
public static final Kernel32.PageAccess PAGE_GUARD
PAGE_NOCACHE
public static final Kernel32.PageAccess PAGE_NOCACHE
PAGE_WRITECOMBINE
public static final Kernel32.PageAccess PAGE_WRITECOMBINE
values
public static Kernel32.PageAccess[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for(Kernel32.PageAccess c : Kernel32.PageAccess.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Kernel32.PageAccess valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
getValue
public int getValue()