public enum AXValueSourceType extends Enum<AXValueSourceType>
| Enum Constant and Description |
|---|
ATTRIBUTE |
CONTENTS |
IMPLICIT |
PLACEHOLDER |
RELATED_ELEMENT |
STYLE |
| Modifier and Type | Method and Description |
|---|---|
static AXValueSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AXValueSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AXValueSourceType ATTRIBUTE
public static final AXValueSourceType IMPLICIT
public static final AXValueSourceType STYLE
public static final AXValueSourceType CONTENTS
public static final AXValueSourceType PLACEHOLDER
public static final AXValueSourceType RELATED_ELEMENT
public static AXValueSourceType[] values()
for (AXValueSourceType c : AXValueSourceType.values()) System.out.println(c);
public static AXValueSourceType 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 nullCopyright © 2020. All rights reserved.