public enum MMapFlag extends Enum<MMapFlag>
| Modifier and Type | Method and Description |
|---|---|
int |
value()
This method is a getter for the value instance variable.
|
static MMapFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MMapFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MMapFlag SHARED
public static final MMapFlag PRIVATE
public static MMapFlag[] values()
for (MMapFlag c : MMapFlag.values()) System.out.println(c);
public static MMapFlag 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.