public enum IrDocElementKind extends Enum<IrDocElementKind>
IrDocElement
.Enum Constant and Description |
---|
ARRAY_TYPE
Array types.
|
BASIC_TYPE
Basic types.
|
BLOCK
Blocks.
|
COMMENT
Java documentation comments.
|
FIELD
Field references.
|
METHOD
Method or constructor references.
|
METHOD_PARAMETER
Method or constructor parameters.
|
NAMED_TYPE
Named types.
|
QUALIFIED_NAME
Qualified names.
|
SIMPLE_NAME
Simple names.
|
TEXT
Plain texts.
|
Modifier and Type | Method and Description |
---|---|
static IrDocElementKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IrDocElementKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IrDocElementKind COMMENT
public static final IrDocElementKind BLOCK
public static final IrDocElementKind SIMPLE_NAME
public static final IrDocElementKind QUALIFIED_NAME
public static final IrDocElementKind FIELD
public static final IrDocElementKind METHOD
public static final IrDocElementKind TEXT
public static final IrDocElementKind METHOD_PARAMETER
public static final IrDocElementKind BASIC_TYPE
public static final IrDocElementKind NAMED_TYPE
public static final IrDocElementKind ARRAY_TYPE
public static IrDocElementKind[] values()
for (IrDocElementKind c : IrDocElementKind.values()) System.out.println(c);
public static IrDocElementKind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.