public enum TARGET_TYPE extends Enum<TARGET_TYPE>
| Modifier and Type | Method and Description |
|---|---|
static TARGET_TYPE |
match(String name) |
String |
toString() |
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 ADD_ON
public static final TARGET_TYPE PLATFORM
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 String toString()
toString in class Enum<TARGET_TYPE>public static TARGET_TYPE match(String name)
Copyright © 2015 JBoss by Red Hat. All rights reserved.