public enum LanguageVersion extends Enum<LanguageVersion>
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 and Description | 
|---|
JAVA_1_1
1.1 added nested classes and interfaces. 
 | 
JAVA_1_5
1.5 added generic types, annotations, enums, and varArgs. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final LanguageVersion JAVA_1_1
public static final LanguageVersion JAVA_1_5
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 nameNullPointerException - if the argument is null Submit a bug or feature
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
 Copyright © 1993, 2012, Oracle and/or its affiliates. 500 Oracle Parkway
Redwood Shores, CA 94065 USA. All rights reserved.