public enum GraphType extends Enum<GraphType>
| Enum Constant and Description |
|---|
CLASS
Obj-Diagram (with ObjEntities)
|
ER
ER-diagram (with DbEntities)
|
| Modifier and Type | Method and Description |
|---|---|
Class<? extends GraphBuilder> |
getBuilderClass() |
String |
getName() |
static GraphType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphType ER
public static final GraphType CLASS
public static GraphType[] values()
for (GraphType c : GraphType.values()) System.out.println(c);
public static GraphType 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 nullpublic Class<? extends GraphBuilder> getBuilderClass()
public String getName()
Copyright © 2001–2015 Apache Cayenne. All rights reserved.