public enum AFModifier extends Enum<AFModifier>
| Modifier and Type | Method and Description |
|---|---|
String |
getPrefix() |
static AFModifier |
of(ExecutableElement methodElement) |
static AFModifier |
of(TypeElement typeElement) |
static AFModifier |
ofElement(Element element) |
String |
toString() |
static AFModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AFModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AFModifier ABSTRACT
public static final AFModifier FINAL
public static final AFModifier DEFAULT
public static AFModifier[] values()
for (AFModifier c : AFModifier.values()) System.out.println(c);
public static AFModifier 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 getPrefix()
public String toString()
toString in class Enum<AFModifier>public static AFModifier ofElement(Element element)
public static AFModifier of(TypeElement typeElement)
public static AFModifier of(ExecutableElement methodElement)
Copyright © 2013–2014. All rights reserved.