public enum NodeKind extends Enum<NodeKind>
| Enum Constant and Description |
|---|
BlankNode |
BlankNodeOrIRI |
BlankNodeOrLiteral |
IRI |
IRIOrLiteral |
Literal |
| Modifier and Type | Method and Description |
|---|---|
static NodeKind |
fromURI(org.openrdf.model.URI uri) |
org.openrdf.model.URI |
getURI() |
static NodeKind |
or(NodeKind a,
NodeKind b) |
static NodeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeKind IRI
public static final NodeKind BlankNode
public static final NodeKind BlankNodeOrIRI
public static final NodeKind Literal
public static final NodeKind IRIOrLiteral
public static final NodeKind BlankNodeOrLiteral
public static NodeKind[] values()
for (NodeKind c : NodeKind.values()) System.out.println(c);
public static NodeKind 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 org.openrdf.model.URI getURI()
public static NodeKind fromURI(org.openrdf.model.URI uri)
Copyright © 2019. All rights reserved.