public enum BuildTarget extends Enum<BuildTarget>
| Enum Constant and Description |
|---|
AWS |
DATA_CATALOG |
GCP |
JSON_SCHEMA |
RDF |
| Modifier and Type | Method and Description |
|---|---|
static BuildTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildTarget RDF
public static final BuildTarget JSON_SCHEMA
public static final BuildTarget AWS
public static final BuildTarget GCP
public static final BuildTarget DATA_CATALOG
public static BuildTarget[] values()
for (BuildTarget c : BuildTarget.values()) System.out.println(c);
public static BuildTarget 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 © 2019. All rights reserved.