Package org.apache.bcel.classfile
Class AccessFlags
java.lang.Object
org.apache.bcel.classfile.AccessFlags
- Direct Known Subclasses:
ClassGen,FieldGenOrMethodGen,FieldOrMethod,JavaClass
Super class for all objects that have modifiers like private, final, ... I.e. classes, fields, and methods.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intDeprecated.(since 6.0) will be made private; do not access directly, use getter/setter. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new instance.AccessFlags(int accessFlags) Constructs a new instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal intGets access flags.final intGets access flags.final booleanTests whether the abstract bit is on.final voidisAbstract(boolean flag) Sets the abstract bit.final booleanTests whether the annotation bit is on.final voidisAnnotation(boolean flag) Sets the annotation bit.final booleanisEnum()Tests whether the enum bit is on.final voidisEnum(boolean flag) Sets the enum bit.final booleanisFinal()Tests whether the final bit is on.final voidisFinal(boolean flag) Sets the final bit.final booleanTests whether the interface bit is on.final voidisInterface(boolean flag) Sets the interface bit.final booleanisNative()Tests whether the native bit is on.final voidisNative(boolean flag) Sets the native bit.final booleanTests whether the private bit is on.final voidisPrivate(boolean flag) Sets the private bit.final booleanTests whether the protected bit is on.final voidisProtected(boolean flag) Sets the protected bit.final booleanisPublic()Tests whether the public bit is on.final voidisPublic(boolean flag) Sets the public bit.final booleanisStatic()Tests whether the static bit is on.final voidisStatic(boolean flag) Sets the static bit.final booleanTests whether the strict bit is on.final voidisStrictfp(boolean flag) Sets the strict bit.final booleanTests whether the synchronized bit is on.final voidisSynchronized(boolean flag) Sets the synchronized bit.final booleanTests whether the synthetic bit is on.final voidisSynthetic(boolean flag) Sets the synthetic bit.final booleanTests whether the transient bit is on.final voidisTransient(boolean flag) Sets the varargs bit.final booleanTests whether the varargs bit is on.final voidisVarArgs(boolean flag) Sets the varargs bit.final booleanTests whether the volatile bit is on.final voidisVolatile(boolean flag) Sets the volatile bit.final voidsetAccessFlags(int accessFlags) Sets access flags also known as modifiers.private voidsetFlag(int flag, boolean set) final voidsetModifiers(int accessFlags) Sets access flags aka "modifiers".private booleantest(short test) Tests whether the bit is on.
-
Field Details
-
access_flags
Deprecated.(since 6.0) will be made private; do not access directly, use getter/setter.Access flags.
-
-
Constructor Details
-
AccessFlags
public AccessFlags()Constructs a new instance. -
AccessFlags
public AccessFlags(int accessFlags) Constructs a new instance.- Parameters:
accessFlags- initial access flags.
-
-
Method Details
-
getAccessFlags
public final int getAccessFlags()Gets access flags.- Returns:
- Access flags of the object aka. "modifiers".
-
getModifiers
public final int getModifiers()Gets access flags.- Returns:
- Access flags of the object also known as modifiers.
-
isAbstract
public final boolean isAbstract()Tests whether the abstract bit is on.- Returns:
- whether the abstract bit is on.
-
isAbstract
public final void isAbstract(boolean flag) Sets the abstract bit.- Parameters:
flag- The new value.
-
isAnnotation
public final boolean isAnnotation()Tests whether the annotation bit is on.- Returns:
- whether the annotation bit is on.
-
isAnnotation
public final void isAnnotation(boolean flag) Sets the annotation bit.- Parameters:
flag- The new value.
-
isEnum
public final boolean isEnum()Tests whether the enum bit is on.- Returns:
- whether the enum bit is on.
-
isEnum
public final void isEnum(boolean flag) Sets the enum bit.- Parameters:
flag- The new value.
-
isFinal
public final boolean isFinal()Tests whether the final bit is on.- Returns:
- whether the final bit is on.
-
isFinal
public final void isFinal(boolean flag) Sets the final bit.- Parameters:
flag- The new value.
-
isInterface
public final boolean isInterface()Tests whether the interface bit is on.- Returns:
- whether the interface bit is on.
-
isInterface
public final void isInterface(boolean flag) Sets the interface bit.- Parameters:
flag- The new value.
-
isNative
public final boolean isNative()Tests whether the native bit is on.- Returns:
- whether the native bit is on.
-
isNative
public final void isNative(boolean flag) Sets the native bit.- Parameters:
flag- The new value.
-
isPrivate
public final boolean isPrivate()Tests whether the private bit is on.- Returns:
- whether the private bit is on.
-
isPrivate
public final void isPrivate(boolean flag) Sets the private bit.- Parameters:
flag- The new value.
-
isProtected
public final boolean isProtected()Tests whether the protected bit is on.- Returns:
- whether the protected bit is on.
-
isProtected
public final void isProtected(boolean flag) Sets the protected bit.- Parameters:
flag- The new value.
-
isPublic
public final boolean isPublic()Tests whether the public bit is on.- Returns:
- whether the public bit is on.
-
isPublic
public final void isPublic(boolean flag) Sets the public bit.- Parameters:
flag- The new value.
-
isStatic
public final boolean isStatic()Tests whether the static bit is on.- Returns:
- whether the static bit is on.
-
isStatic
public final void isStatic(boolean flag) Sets the static bit.- Parameters:
flag- The new value.
-
isStrictfp
public final boolean isStrictfp()Tests whether the strict bit is on.- Returns:
- whether the strict bit is on.
-
isStrictfp
public final void isStrictfp(boolean flag) Sets the strict bit.- Parameters:
flag- The new value.
-
isSynchronized
public final boolean isSynchronized()Tests whether the synchronized bit is on.- Returns:
- whether the synchronized bit is on.
-
isSynchronized
public final void isSynchronized(boolean flag) Sets the synchronized bit.- Parameters:
flag- The new value.
-
isSynthetic
public final boolean isSynthetic()Tests whether the synthetic bit is on.- Returns:
- whether the synthetic bit is on.
-
isSynthetic
public final void isSynthetic(boolean flag) Sets the synthetic bit.- Parameters:
flag- The new value.
-
isTransient
public final boolean isTransient()Tests whether the transient bit is on.- Returns:
- whether the varargs bit is on.
-
isTransient
public final void isTransient(boolean flag) Sets the varargs bit.- Parameters:
flag- The new value.
-
isVarArgs
public final boolean isVarArgs()Tests whether the varargs bit is on.- Returns:
- whether the varargs bit is on.
-
isVarArgs
public final void isVarArgs(boolean flag) Sets the varargs bit.- Parameters:
flag- The new value.
-
isVolatile
public final boolean isVolatile()Tests whether the volatile bit is on.- Returns:
- whether the volatile bit is on.
-
isVolatile
public final void isVolatile(boolean flag) Sets the volatile bit.- Parameters:
flag- The new value.
-
setAccessFlags
public final void setAccessFlags(int accessFlags) Sets access flags also known as modifiers.- Parameters:
accessFlags- Access flags of the object.
-
setFlag
private void setFlag(int flag, boolean set) -
setModifiers
public final void setModifiers(int accessFlags) Sets access flags aka "modifiers".- Parameters:
accessFlags- Access flags of the object.
-
test
private boolean test(short test) Tests whether the bit is on.- Parameters:
test- the bit to test.- Returns:
- whether the bit is on.
-