Interface Modifiers


  • public interface Modifiers
    Modifiers is an interface containing constants used as modifiers of classes, fields, and methods.
    • Field Summary

      Fields 
      Modifier and Type Field 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.