public static enum Module.Modifier extends Enum<Module.Modifier>
Enum Constant and Description |
---|
ACC_MANDATED |
ACC_NONE |
ACC_OPEN |
ACC_STATIC_PHASE |
ACC_SYNTHETIC |
ACC_TRANSITIVE |
Modifier and Type | Method and Description |
---|---|
int |
asInt() |
static String |
getModuleFlags(int flag) |
static String |
getModuleModifiers(int flag) |
static String |
getStatementFlags(int flag) |
static String |
getStatementModifiers(int flag) |
static Module.Modifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Module.Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Module.Modifier ACC_NONE
public static final Module.Modifier ACC_OPEN
public static final Module.Modifier ACC_TRANSITIVE
public static final Module.Modifier ACC_STATIC_PHASE
public static final Module.Modifier ACC_SYNTHETIC
public static final Module.Modifier ACC_MANDATED
public static Module.Modifier[] values()
for (Module.Modifier c : Module.Modifier.values()) System.out.println(c);
public static Module.Modifier 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 asInt()
public static String getModuleModifiers(int flag)
public static String getModuleFlags(int flag)
public static String getStatementModifiers(int flag)
public static String getStatementFlags(int flag)
Copyright © 2021. All Rights Reserved.