edu.uci.ics.jung.visualization.annotations
Enum Annotation.Layer
java.lang.Object
java.lang.Enum<Annotation.Layer>
edu.uci.ics.jung.visualization.annotations.Annotation.Layer
- All Implemented Interfaces:
- Serializable, Comparable<Annotation.Layer>
- Enclosing class:
- Annotation<T>
public static enum Annotation.Layer
- extends Enum<Annotation.Layer>
LOWER
public static final Annotation.Layer LOWER
UPPER
public static final Annotation.Layer UPPER
values
public static final Annotation.Layer[] 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(Annotation.Layer c : Annotation.Layer.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Annotation.Layer 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
Copyright © 2009. All Rights Reserved.