public enum InferenceDepth extends Enum<InferenceDepth>
Enum Constant and Description |
---|
ALL
All relations will be returned, direct and indirect.
|
DIRECT
Only direct relations will be returned.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isDirectOnly() |
static InferenceDepth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InferenceDepth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InferenceDepth DIRECT
public static final InferenceDepth ALL
public static InferenceDepth[] values()
for (InferenceDepth c : InferenceDepth.values()) System.out.println(c);
public static InferenceDepth 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 boolean isDirectOnly()
Copyright © 2020 The University of Manchester. All rights reserved.