public enum TripleComponentOrder extends Enum<TripleComponentOrder>
Enum Constant and Description |
---|
OPS
Object, predicate, subject
|
OSP
Object, subject, predicate
|
POS
Predicate, object, subject
|
PSO
Predicate, subject, object
|
SOP
Subject, object, predicate
|
SPO
Subject, predicate, object
|
Unknown
Subject, predicate, object
|
Modifier and Type | Method and Description |
---|---|
static TripleComponentOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TripleComponentOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TripleComponentOrder Unknown
public static final TripleComponentOrder SPO
public static final TripleComponentOrder SOP
public static final TripleComponentOrder PSO
public static final TripleComponentOrder POS
public static final TripleComponentOrder OSP
public static final TripleComponentOrder OPS
public static TripleComponentOrder[] values()
for (TripleComponentOrder c : TripleComponentOrder.values()) System.out.println(c);
public static TripleComponentOrder 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.