Java org.eclipse.jdt.core Flags fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core Flags fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core Flags.

The text is from its open source code.

Field

intAccDefault
Constant representing the absence of any flag.
intAccPublic
Public access flag.
intAccPrivate
Private access flag.
intAccProtected
Protected access flag.
intAccStatic
Static access flag.
intAccFinal
Final access flag.
intAccSynchronized
Synchronized access flag.
intAccVolatile
Volatile property flag.
intAccTransient
Transient property flag.
intAccNative
Native property flag.
intAccInterface
Interface property flag.
intAccAbstract
Abstract property flag.
intAccStrictfp
Strictfp property flag.
intAccSuper
Super property flag.
intAccSynthetic
Synthetic property flag.
intAccDeprecated
Deprecated property flag.
intAccBridge
Bridge method property flag (added in J2SE 1.5).
intAccVarargs
Varargs method property flag (added in J2SE 1.5).
intAccEnum
Enum property flag (added in J2SE 1.5).
intAccAnnotation
Annotation property flag (added in J2SE 1.5).
intAccDefaultMethod
Default method property flag.

Method

booleanisAbstract(int flags)
Returns whether the given integer includes the abstract modifier.
booleanisAnnotation(int flags)
Returns whether the given integer has the AccAnnotation bit set.
booleanisBridge(int flags)
Returns whether the given integer has the AccBridge bit set.
booleanisDefaultMethod(int flags)
Returns whether the given integer has the AccDefaultMethod bit set.
booleanisDeprecated(int flags)
Returns whether the given integer includes the indication that the element is deprecated (@deprecated tag in Javadoc comment).
booleanisEnum(int flags)
Returns whether the given integer has the AccEnum bit set.
booleanisFinal(int flags)
Returns whether the given integer includes the final modifier.
booleanisInterface(int flags)
Returns whether the given integer includes the interface modifier.
booleanisNative(int flags)
Returns whether the given integer includes the native modifier.
booleanisPackageDefault(int flags)
Returns whether the given integer does not include one of the public, private, or protected flags.
booleanisPrivate(int flags)
Returns whether the given integer includes the private modifier.
booleanisProtected(int flags)
Returns whether the given integer includes the protected modifier.
booleanisPublic(int flags)
Returns whether the given integer includes the public modifier.
booleanisStatic(int flags)
Returns whether the given integer includes the static modifier.
booleanisStrictfp(int flags)
Returns whether the given integer includes the strictfp modifier.
booleanisSuper(int flags)
Returns whether the given integer includes the super modifier.
booleanisSynchronized(int flags)
Returns whether the given integer includes the synchronized modifier.
booleanisSynthetic(int flags)
Returns whether the given integer includes the indication that the element is synthetic.
booleanisTransient(int flags)
Returns whether the given integer includes the transient modifier.
booleanisVarargs(int flags)
Returns whether the given integer has the AccVarargs bit set.
booleanisVolatile(int flags)
Returns whether the given integer includes the volatile modifier.
StringtoString(int flags)
Returns a standard string describing the given modifier flags.