public static enum BaseHolder.Source extends java.lang.Enum<BaseHolder.Source>
| Enum Constant | Description |
|---|---|
ANNOTATION |
|
DESCRIPTOR |
|
EMBEDDED |
|
JAVAX_API |
| Modifier and Type | Method | Description |
|---|---|---|
static BaseHolder.Source |
valueOf(java.lang.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(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 nullCopyright © 1995–2018 Webtide. All rights reserved.