- java.lang.Object
-
- java.lang.Enum<AttributeTree.ValueKind>
-
- com.sun.source.doctree.AttributeTree.ValueKind
-
- 实现的所有接口
-
Serializable
,Comparable<AttributeTree.ValueKind>
- Enclosing interface:
- AttributeTree
public static enum AttributeTree.ValueKind extends Enum<AttributeTree.ValueKind>
属性值的种类。
-
-
Enum Constant Detail
-
EMPTY
public static final AttributeTree.ValueKind EMPTY
属性值为空。
-
UNQUOTED
public static final AttributeTree.ValueKind UNQUOTED
属性值未包含在引号中。
-
SINGLE
public static final AttributeTree.ValueKind SINGLE
属性值用单引号括起来。
-
DOUBLE
public static final AttributeTree.ValueKind DOUBLE
属性值用双引号括起来。
-
-
方法详细信息
-
values
public static AttributeTree.ValueKind[] values()
按照声明的顺序返回一个包含此枚举类型常量的数组。 此方法可用于迭代常量,如下所示:for (AttributeTree.ValueKind c : AttributeTree.ValueKind.values()) System.out.println(c);
- 结果
- 包含此枚举类型常量的数组,按声明的顺序排列
-
valueOf
public static AttributeTree.ValueKind valueOf(String name)
返回具有指定名称的此类型的枚举常量。 该字符串必须与用于声明此类型中的枚举常量的标识符完全匹配。 (不允许使用无关的空白字符。)- 参数
-
name
- 要返回的枚举常量的名称。 - 结果
- 具有指定名称的枚举常量
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量 -
NullPointerException
- 如果参数为null
-
-