public static enum ConceptManager.ConceptsToInclude extends Enum<ConceptManager.ConceptsToInclude>
ALL | all concepts in open graphs will be returned |
GENERIC_ONLY | only generic concepts in open graphs will be returned |
Enum Constant and Description |
---|
ALL |
GENERIC_ONLY |
Modifier and Type | Method and Description |
---|---|
static ConceptManager.ConceptsToInclude |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConceptManager.ConceptsToInclude[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConceptManager.ConceptsToInclude ALL
public static final ConceptManager.ConceptsToInclude GENERIC_ONLY
public static ConceptManager.ConceptsToInclude[] values()
for (ConceptManager.ConceptsToInclude c : ConceptManager.ConceptsToInclude.values()) System.out.println(c);
public static ConceptManager.ConceptsToInclude 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 null