Spec-Zone .ru
спецификации, руководства, описания, API
Doclet API

com.sun.javadoc
Enum LanguageVersion

java.lang.Object
  extended by java.lang.Enum<LanguageVersion>
      extended by com.sun.javadoc.LanguageVersion
All Implemented Interfaces:
Serializable, Comparable<LanguageVersion>

public enum LanguageVersion
extends 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.

Since:
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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

JAVA_1_1

public static final LanguageVersion JAVA_1_1
1.1 added nested classes and interfaces.


JAVA_1_5

public static final LanguageVersion JAVA_1_5
1.5 added generic types, annotations, enums, and varArgs.

Method Detail

values

public static final LanguageVersion[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(LanguageVersion c : LanguageVersion.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static LanguageVersion valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name

Doclet API

Submit a bug or feature
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2004 Sun Microsystems, Inc. 4150 Network Circle
Santa Clara, California, 95054, U.S.A. All Rights Reserved.