public enum VMFlags extends Enum<VMFlags>
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(int flag)
Returns true if the flag provided as int is equal to the enum
|
static VMFlags |
findFlag(int flag)
Returns the VMFlags Type of the given int or null
|
int |
getFlag() |
static VMFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VMFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VMFlags VM_FC
public static final VMFlags VM_FZ
public static final VMFlags VM_FS
public static VMFlags[] values()
for (VMFlags c : VMFlags.values()) System.out.println(c);
public static VMFlags 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 static VMFlags findFlag(int flag)
flag - as intpublic boolean equals(int flag)
flag - public int getFlag()
Copyright © 2017. All rights reserved.