public static enum BaseHolder.Source extends Enum<BaseHolder.Source>
Enum Constant and Description |
---|
ANNOTATION |
DESCRIPTOR |
EMBEDDED |
JAVAX_API |
Modifier and Type | Method and Description |
---|---|
static BaseHolder.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseHolder.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseHolder.Source EMBEDDED
public static final BaseHolder.Source JAVAX_API
public static final BaseHolder.Source DESCRIPTOR
public static final BaseHolder.Source ANNOTATION
public static BaseHolder.Source[] values()
for (BaseHolder.Source c : BaseHolder.Source.values()) System.out.println(c);
public static BaseHolder.Source 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 © 1995-2015 Webtide. All Rights Reserved.