public enum EnumValueAttributeName extends Enum<EnumValueAttributeName> implements SourceAttributeName
Enum Constant and Description |
---|
JAVA_VALUE
The java value of the enum Attribute.
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
Returns the name of the referenced source element attribute.
|
String |
toString() |
static EnumValueAttributeName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumValueAttributeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumValueAttributeName JAVA_VALUE
public static EnumValueAttributeName[] values()
for (EnumValueAttributeName c : EnumValueAttributeName.values()) System.out.println(c);
public static EnumValueAttributeName 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 nullpublic String getName()
getName
in interface SourceAttributeName
public String toString()
toString
in class Enum<EnumValueAttributeName>
Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.