public enum DefaultTargets extends Enum<DefaultTargets>
| Enum Constant and Description |
|---|
BLANK
The constant BLANK.
|
PARENT
The constant PARENT.
|
SELF
The constant SELF.
|
TOP
The constant TOP.
|
| Modifier and Type | Method and Description |
|---|---|
static DefaultTargets |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultTargets[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultTargets BLANK
public static final DefaultTargets SELF
public static final DefaultTargets PARENT
public static final DefaultTargets TOP
public static DefaultTargets[] values()
for (DefaultTargets c : DefaultTargets.values()) System.out.println(c);
public static DefaultTargets 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 © 2010–2015. All rights reserved.