|
Doclet API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<LanguageVersion> com.sun.javadoc.LanguageVersion
public enum LanguageVersion
Java Programming Language version. The constants of this enum identify the JDK and J2SE releases containing language changes relevant to doclets.
All doclets support at least the 1.1 language version. The first release subsequent to this with language changes affecting doclets is 1.5.
Enum Constant Summary | |
---|---|
JAVA_1_1
1.1 added nested classes and interfaces. |
|
JAVA_1_5
1.5 added generic types, annotations, enums, and varArgs. |
Method Summary | |
---|---|
static LanguageVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LanguageVersion[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LanguageVersion JAVA_1_1
public static final LanguageVersion JAVA_1_5
Method Detail |
---|
public static LanguageVersion[] values()
for (LanguageVersion c : LanguageVersion.values()) System.out.println(c);
public static LanguageVersion valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Doclet API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |