public enum LineageRelationType extends Enum<LineageRelationType>
| Enum Constant and Description |
|---|
CHILD
a child relationship with another specified entity.
|
NONE
no relationship between tracks.
|
PARENT
a parent relationship with another specified entity
|
| Modifier and Type | Method and Description |
|---|---|
static LineageRelationType |
fromString(String value) |
String |
toString() |
static LineageRelationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineageRelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineageRelationType PARENT
public static final LineageRelationType CHILD
public static final LineageRelationType NONE
public static LineageRelationType[] values()
for (LineageRelationType c : LineageRelationType.values()) System.out.println(c);
public static LineageRelationType 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 LineageRelationType fromString(String value)
public String toString()
toString in class Enum<LineageRelationType>Copyright © 2013–2020. All rights reserved.