- java.lang.Object
-
- java.lang.Enum<GraphMLExporter.AttributeCategory>
-
- org.jgrapht.nio.graphml.GraphMLExporter.AttributeCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<GraphMLExporter.AttributeCategory>
- Enclosing class:
- GraphMLExporter<V,E>
public static enum GraphMLExporter.AttributeCategory extends Enum<GraphMLExporter.AttributeCategory>
Denotes the category of a GraphML-Attribute.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
Get a string representation of the attribute categorystatic GraphMLExporter.AttributeCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static GraphMLExporter.AttributeCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GRAPH
public static final GraphMLExporter.AttributeCategory GRAPH
-
NODE
public static final GraphMLExporter.AttributeCategory NODE
-
EDGE
public static final GraphMLExporter.AttributeCategory EDGE
-
ALL
public static final GraphMLExporter.AttributeCategory ALL
-
-
Method Detail
-
values
public static GraphMLExporter.AttributeCategory[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GraphMLExporter.AttributeCategory c : GraphMLExporter.AttributeCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphMLExporter.AttributeCategory 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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
Get a string representation of the attribute category- Overrides:
toString
in classEnum<GraphMLExporter.AttributeCategory>
- Returns:
- the string representation of the attribute category
-
-