public static enum RdfTriple.TripleType extends java.lang.Enum<RdfTriple.TripleType>
Enum Constant and Description |
---|
CLASS
Triple is specified by the class of the Thing
|
EXPLICIT
Triple is explicitly defined
|
GENERALIZED
Triple is a generalization of a more specific relationship
|
IMPLIED
Triple is implied by other properties or things
|
QUERY
Triple is a query
|
UNSPECIFIED
Triple object has not been specified yet
|
Modifier and Type | Method and Description |
---|---|
static RdfTriple.TripleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RdfTriple.TripleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RdfTriple.TripleType EXPLICIT
public static final RdfTriple.TripleType CLASS
public static final RdfTriple.TripleType IMPLIED
public static final RdfTriple.TripleType GENERALIZED
public static final RdfTriple.TripleType QUERY
public static final RdfTriple.TripleType UNSPECIFIED
public static RdfTriple.TripleType[] values()
for (RdfTriple.TripleType c : RdfTriple.TripleType.values()) System.out.println(c);
public static RdfTriple.TripleType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null