package naming standards
- All letters of word(s) should be lower case letters.
- If package name contains one word then first letter starts with lower case letter.
- If package name contains more than one word then first letter starts with lower case letter, remaining words also starts with lower case letter.
- Tip : Should not give space between the words while naming to package.
- Every word should be separate by .(dot) symbol
Examples :
Pre-defined package names:
- java.lang
- java.io
- java.util
- java.sql
User defined package names:
- com.nireekshan
- com.google
- com.yahoo
Thanks for your time.
Nireekshan