public static enum Target.Type extends Enum<Target.Type>
| Modifier and Type | Method and Description |
|---|---|
static Target.Type |
from(String name) |
static Target.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Target.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target.Type Remote
public static final Target.Type Managed
public static final Target.Type Embedded
public static final Target.Type Default
public static Target.Type[] values()
for (Target.Type c : Target.Type.values()) System.out.println(c);
public static Target.Type 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 nullpublic static Target.Type from(String name)
Copyright © 2017 JBoss by Red Hat. All rights reserved.