org.xvolks.jnative.util
Enum Kernel32.FileMap
java.lang.Object
java.lang.Enum<Kernel32.FileMap>
org.xvolks.jnative.util.Kernel32.FileMap
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Kernel32.FileMap>
- Enclosing class:
- Kernel32
public static enum Kernel32.FileMap
- extends java.lang.Enum<Kernel32.FileMap>
Method Summary |
int |
getValue()
|
static Kernel32.FileMap |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Kernel32.FileMap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
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 |
FILE_MAP_ALL_ACCESS
public static final Kernel32.FileMap FILE_MAP_ALL_ACCESS
FILE_MAP_READ
public static final Kernel32.FileMap FILE_MAP_READ
FILE_MAP_WRITE
public static final Kernel32.FileMap FILE_MAP_WRITE
FILE_MAP_COPY
public static final Kernel32.FileMap FILE_MAP_COPY
values
public static Kernel32.FileMap[] 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.FileMap c : Kernel32.FileMap.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.FileMap 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()