public enum TripleComponentRole extends Enum<TripleComponentRole>
Enum Constant and Description |
---|
OBJECT
The triple is an object
|
PREDICATE
The triple is a predicate
|
SUBJECT
The triple is a subject
|
Modifier and Type | Method and Description |
---|---|
static TripleComponentRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TripleComponentRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TripleComponentRole SUBJECT
public static final TripleComponentRole PREDICATE
public static final TripleComponentRole OBJECT
public static TripleComponentRole[] values()
for (TripleComponentRole c : TripleComponentRole.values()) System.out.println(c);
public static TripleComponentRole 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 DataWeb Research. All rights reserved.