Enum Class AccessFlag
- All Implemented Interfaces:
Serializable,Comparable<AccessFlag>,Constable
Created by covers1624 on 31/8/21.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable AccessFlaggetAccess(EnumBitSet<AccessFlag> accessFlags) static StringstringRep(EnumBitSet<AccessFlag> flags) static StringtoString(EnumBitSet<AccessFlag> flags) static EnumBitSet<AccessFlag> unpackClass(int packed) static EnumBitSet<AccessFlag> unpackField(int packed) static EnumBitSet<AccessFlag> unpackInnerClass(int packed) static EnumBitSet<AccessFlag> unpackMethod(int packed) static EnumBitSet<AccessFlag> unpackParameter(int packed) static AccessFlagReturns the enum constant of this class with the specified name.static AccessFlag[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PUBLIC
-
PRIVATE
-
PROTECTED
-
STATIC
-
FINAL
-
SYNCHRONIZED
-
OPEN
-
TRANSITIVE
-
VOLATILE
-
BRIDGE
-
STATIC_PHASE
-
VARARGS
-
TRANSIENT
-
NATIVE
-
INTERFACE
-
ABSTRACT
-
STRICT
-
ANNOTATION
-
SYNTHETIC
-
ENUM
-
MANDATED
-
MODULE
-
RECORD
-
-
Field Details
-
ACCESS_MODIFIERS
-
name
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
unpackClass
-
unpackInnerClass
-
unpackMethod
-
unpackParameter
-
unpackField
-
toString
-
stringRep
-
getAccess
-