java_modifiers.py 158 B

12345678910
  1. modifiers = {
  2. 'public': True,
  3. 'protected': True,
  4. 'private': True
  5. }
  6. final = 'final'
  7. volatile = 'volatile'
  8. transient = 'transient'
  9. native = 'native'