X-HuMan
X-HuMan

Reputation: 1488

Oracle Java code conventions

Does someone know where I can find the document by Oracle which describes Java code conventions?

This URL is not available anymore, for that reason I created new question for this topic.

http://www.oracle.com/technetwork/java/codeconv-138413.html

Upvotes: 50

Views: 32707

Answers (6)

TMF
TMF

Reputation: 1

I answer this only because the Oracle docs linked here seem to have last been edited in 1997 and this Oracle doc was last edited in April 20, 1999. It has the appropriate disclaimer of no longer being updated. https://www.oracle.com/java/technologies/javase/codeconventions-fileorganization.html

Upvotes: 0

Alexandre Cartapanis
Alexandre Cartapanis

Reputation: 1523

The old document seems to be available as HTML too http://www.oracle.com/technetwork/java/codeconvtoc-136057.html

Upvotes: 0

Andy
Andy

Reputation: 221

I think that document is dated. SEI has published the latest standards - cool and really good.

Upvotes: 3

user3919199
user3919199

Reputation: 11

The document could be found at: http://www.oracle.com/technetwork/java/codeconventions-150003.pdf

Upvotes: 0

eis
eis

Reputation: 53482

One option is to use wayback machine, which seems to contain the document (here's direct link to pdf version). However I would also be interested to find out what Oracle did with it and do they intend to get rid of it.

There's a discussion on Oracle forums about this being raised to OTN support, but no response is mentioned.


Update on 17.6.2014: There's now a forum posting added to the site explaining the following:

Those Java Code Conventions were written in 1999 and have not been maintained since.

The information might not be up to date; links within the documents might not work. That is why the pages were removed. Unfortunately there are other sites that point to that document which were not updated.

To avoid confusions we have re-posted the original document –with an appropriate disclaimer about the information not being up to date- while we clean up those other sites.

Try Code Conventions for the Java Programming Language

And indeed, seems the page has been restored.

Upvotes: 31

Related Questions