protected static enum Target.TargetField extends Enum<Target.TargetField> implements EnumType
| Enum Constant and Description |
|---|
TARGET_CERT |
TARGET_GROUP |
TARGET_NAME |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getValue() |
static Target.TargetField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Target.TargetField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target.TargetField TARGET_NAME
public static final Target.TargetField TARGET_GROUP
public static final Target.TargetField TARGET_CERT
public static Target.TargetField[] values()
for (Target.TargetField c : Target.TargetField.values()) System.out.println(c);
public static Target.TargetField 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 © 2014–2019 The Apache Software Foundation. All rights reserved.