public enum GraphType extends Enum<GraphType>
| 限定符和类型 | 类和说明 |
|---|---|
static class |
GraphType.Adapter |
| 枚举常量和说明 |
|---|
AREA |
GRAPHTYPE_UNSUPPORTED_ENUM |
STACK |
| 限定符和类型 | 方法和说明 |
|---|---|
static GraphType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static GraphType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static GraphType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final GraphType AREA
public static final GraphType STACK
public static final GraphType GRAPHTYPE_UNSUPPORTED_ENUM
public static GraphType[] values()
for (GraphType c : GraphType.values()) System.out.println(c);
public static GraphType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getValue()
Copyright © 2025. All rights reserved.