We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fdb2ee commit 1f5b711Copy full SHA for 1f5b711
CodeConventions.docx
-13.7 KB
CodeConventions.md
@@ -0,0 +1,32 @@
1
+# Class structure
2
+
3
+## Constants
4
+1. public constants (public static final)
5
+2. protected constants (protected static final)
6
+3. private constants (private static final)
7
8
+## Fields
9
+4. public fields
10
+5. protected fields
11
+6. private fields
12
13
+## Constructors
14
+7. public constructors
15
+8. protected constructors
16
+9. private constructors
17
18
+## Methods
19
+10. public static methods
20
+11. public methods
21
+12. protected static methods
22
+13. protected methods
23
+14. private static methods
24
+15. private methods
25
26
+## Internal classes
27
+16. public static classes
28
+17. public classes
29
+18. protected static classes
30
+19. protected classes
31
+20. private static classes
32
+21. private classes
0 commit comments