public static enum Relation.Type extends Enum<Relation.Type>
| Enum Constant and Description |
|---|
ALL |
CREATE |
DROP |
GENERATE |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
static Relation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Relation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Relation.Type DROP
public static final Relation.Type ALL
public static final Relation.Type CREATE
public static final Relation.Type GENERATE
public static final Relation.Type STANDARD
public static Relation.Type[] values()
for (Relation.Type c : Relation.Type.values()) System.out.println(c);
public static Relation.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 nullCopyright © 2020 CDAP Licensed under the Apache License, Version 2.0.