public enum SourceType extends Enum<SourceType>
| Enum Constant and Description |
|---|
ANNOTATION |
CLASS |
ENUM |
INTERFACE |
PACKAGEINFO |
| Modifier and Type | Method and Description |
|---|---|
static SourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceType CLASS
public static final SourceType INTERFACE
public static final SourceType ENUM
public static final SourceType ANNOTATION
public static final SourceType PACKAGEINFO
public static SourceType[] values()
for (SourceType c : SourceType.values()) System.out.println(c);
public static SourceType 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 © 2014 JBoss by Red Hat. All Rights Reserved.