Klasse ModuleModifier.ModuleModifierKeyword
java.lang.Object
org.aspectj.org.eclipse.jdt.core.dom.ModuleModifier.ModuleModifierKeyword
- Umschließende Klasse:
ModuleModifier
Module Modifier keywords (typesafe enumeration).
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final ModuleModifier.ModuleModifierKeyword"static" modifier with flag valueModuleModifier.STATIC_PHASE.static final ModuleModifier.ModuleModifierKeyword"transitive" modifier with flag valueModuleModifier.TRANSITIVE. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfromFlagValue(int flagValue) Returns the module modifier corresponding to the given single-bit flag value, ornullif none or if more than one bit is set.intReturns the module modifier flag value corresponding to this module modifier keyword.Returns the module modifier corresponding to the given string, ornullif none.toString()Returns the keyword for the module modifier.
-
Felddetails
-
STATIC_KEYWORD
"static" modifier with flag valueModuleModifier.STATIC_PHASE. -
TRANSITIVE_KEYWORD
"transitive" modifier with flag valueModuleModifier.TRANSITIVE.
-
-
Methodendetails
-
fromFlagValue
Returns the module modifier corresponding to the given single-bit flag value, ornullif none or if more than one bit is set.fromFlagValueis the converse oftoFlagValue: that is,ModuleModifierKind.fromFlagValue(k.toFlagValue()) == kfor all module modifier keywordsk.- Parameter:
flagValue- the single-bit flag value for the module modifier- Gibt zurück:
- the module modifier keyword, or
nullif none - Siehe auch:
-
toKeyword
Returns the module modifier corresponding to the given string, ornullif none.toKeywordis the converse oftoString: that is,ModuleModifierKind.toKeyword(k.toString()) == kfor all module modifier keywordsk.- Parameter:
keyword- the lowercase string name for the module modifier- Gibt zurück:
- the module modifier keyword, or
nullif none - Siehe auch:
-
toFlagValue
public int toFlagValue()Returns the module modifier flag value corresponding to this module modifier keyword. These flag values are as described in the Java Virtual Machine Specification.- Gibt zurück:
- one of the
ModuleModifierconstants - Siehe auch:
-
toString
Returns the keyword for the module modifier.
-