public enum Namespaces extends java.lang.Enum<Namespaces>
Enum Constant and Description |
---|
OWL
OWL namespace
|
OWL11
The OWL 1.1 namespace is here for legacy reasons.
|
OWL11XML
legacy
|
OWL2
The OWL 2 namespace is here for legacy reasons.
|
RDF
RDF namespace
|
RDFS
RDFS namespace
|
SKOS
SKOS namespace
|
SWRL
SWRL namespace
|
SWRLB
SWRLB namespace
|
XML
XML namespace
|
XSD
XSD namespace
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Namespaces |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Namespaces[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Namespaces OWL2
public static final Namespaces OWL11XML
public static final Namespaces OWL11
public static final Namespaces OWL
public static final Namespaces RDFS
public static final Namespaces RDF
public static final Namespaces XSD
public static final Namespaces XML
public static final Namespaces SWRL
public static final Namespaces SWRLB
public static final Namespaces SKOS
public static Namespaces[] values()
for (Namespaces c : Namespaces.values()) System.out.println(c);
public static Namespaces 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Namespaces>