public interface Modifiers
| Modifier and Type | Field and Description |
|---|---|
static short |
ABSTRACT
The class or method is declared abstract.
|
static short |
FINAL
The class, field, or method is declared final.
|
static short |
INTERFACE
The class is an interface.
|
static short |
NATIVE
The method is declared native.
|
static short |
PRIVATE
The class, field, or method is declared private.
|
static short |
PROTECTED
The class, field, or method is declared protected.
|
static short |
PUBLIC
The class, field, or method is declared public.
|
static short |
STATIC
The field or method is declared static.
|
static short |
SUPER
The class calls methods in the superclass.
|
static short |
SYNCHRONIZED
The method is declared synchronized.
|
static short |
TRANSIENT
The field is declared transient.
|
static short |
VOLATILE
The field is declared volatile.
|
static final short PUBLIC
static final short PRIVATE
static final short PROTECTED
static final short STATIC
static final short FINAL
static final short SUPER
static final short SYNCHRONIZED
static final short VOLATILE
static final short TRANSIENT
static final short NATIVE
static final short INTERFACE
static final short ABSTRACT