@Exported public static enum AttributeTree.ValueKind extends Enum<AttributeTree.ValueKind>
修飾子と型 | メソッド | 説明 |
---|---|---|
static AttributeTree.ValueKind |
valueOf(String name) |
指定された名前を持つ、この型の列挙型定数を返します。
|
static AttributeTree.ValueKind[] |
values() |
この列挙型の定数を含む配列を、宣言されている順序で返します。
|
public static final AttributeTree.ValueKind EMPTY
public static final AttributeTree.ValueKind UNQUOTED
public static final AttributeTree.ValueKind SINGLE
public static final AttributeTree.ValueKind DOUBLE
public static AttributeTree.ValueKind[] values()
for (AttributeTree.ValueKind c : AttributeTree.ValueKind.values()) System.out.println(c);
public static AttributeTree.ValueKind valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- 指定された名前を持つ定数をこの列挙型が持っていない場合NullPointerException
- 引数がnullの場合
Copyright © 2005, 2025, Oracle and/or its affiliates. All rights reserved.