@Exported public static enum AttributeTree.ValueKind extends Enum<AttributeTree.ValueKind>
| Modifier and Type | Method and Description | 
|---|---|
| static AttributeTree.ValueKind | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static AttributeTree.ValueKind[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
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 - 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 null
 Copyright © 2005, 2025, Oracle and/or its affiliates.  All rights reserved.