public enum ExtractDecl extends java.lang.Enum<ExtractDecl> implements Name.Visitor<java.lang.Object,Decl>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static ExtractDecl |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtractDecl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Decl |
visit(Name name,
java.lang.Object par) |
Decl |
visit(ResolvedName resolvedName,
java.lang.Object par) |
Decl |
visit(UnresolvedName unresolvedName,
java.lang.Object par) |
public static final ExtractDecl INSTANCE
public static ExtractDecl[] values()
for (ExtractDecl c : ExtractDecl.values()) System.out.println(c);
public static ExtractDecl valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic Decl visit(Name name, java.lang.Object par)
visit in interface Name.Visitor<java.lang.Object,Decl>public Decl visit(ResolvedName resolvedName, java.lang.Object par)
visit in interface ResolvedName.Visitor<java.lang.Object,Decl>public Decl visit(UnresolvedName unresolvedName, java.lang.Object par)
visit in interface UnresolvedName.Visitor<java.lang.Object,Decl>