Package EDU.purdue.cs.bloat.reflect
Interface Modifiers
-
public interface ModifiersModifiers is an interface containing constants used as modifiers of classes, fields, and methods.
-
-
Field Summary
Fields Modifier and Type Field Description static shortABSTRACTThe class or method is declared abstract.static shortFINALThe class, field, or method is declared final.static shortINTERFACEThe class is an interface.static shortNATIVEThe method is declared native.static shortPRIVATEThe class, field, or method is declared private.static shortPROTECTEDThe class, field, or method is declared protected.static shortPUBLICThe class, field, or method is declared public.static shortSTATICThe field or method is declared static.static shortSUPERThe class calls methods in the superclass.static shortSYNCHRONIZEDThe method is declared synchronized.static shortTRANSIENTThe field is declared transient.static shortVOLATILEThe field is declared volatile.
-
-
-
Field Detail
-
PUBLIC
static final short PUBLIC
The class, field, or method is declared public.- See Also:
- Constant Field Values
-
PRIVATE
static final short PRIVATE
The class, field, or method is declared private.- See Also:
- Constant Field Values
-
PROTECTED
static final short PROTECTED
The class, field, or method is declared protected.- See Also:
- Constant Field Values
-
STATIC
static final short STATIC
The field or method is declared static.- See Also:
- Constant Field Values
-
FINAL
static final short FINAL
The class, field, or method is declared final.- See Also:
- Constant Field Values
-
SUPER
static final short SUPER
The class calls methods in the superclass.- See Also:
- Constant Field Values
-
SYNCHRONIZED
static final short SYNCHRONIZED
The method is declared synchronized.- See Also:
- Constant Field Values
-
VOLATILE
static final short VOLATILE
The field is declared volatile.- See Also:
- Constant Field Values
-
TRANSIENT
static final short TRANSIENT
The field is declared transient.- See Also:
- Constant Field Values
-
NATIVE
static final short NATIVE
The method is declared native.- See Also:
- Constant Field Values
-
INTERFACE
static final short INTERFACE
The class is an interface.- See Also:
- Constant Field Values
-
ABSTRACT
static final short ABSTRACT
The class or method is declared abstract.- See Also:
- Constant Field Values
-
-