public enum Origin extends Enum<Origin>
Enum Constant and Description |
---|
Annotation |
API |
NotSet |
WebDefaults |
WebFragment |
WebOverride |
WebXml |
Modifier and Type | Method and Description |
---|---|
static Origin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Origin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Origin NotSet
public static final Origin WebXml
public static final Origin WebDefaults
public static final Origin WebOverride
public static final Origin WebFragment
public static final Origin Annotation
public static final Origin API
public static Origin[] values()
for (Origin c : Origin.values()) System.out.println(c);
public static Origin 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.