Enum Constant and Description |
---|
BigDecimal |
BigInteger |
Boolean |
Byte |
Double |
Expression_OR |
Float |
Formula |
Integer |
Long |
NIL |
Object |
Short |
String |
Symbol |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Returns the name of a
|
static ValueType |
getValueTypeFromOWL2Datatype(org.semanticweb.owlapi.vocab.OWL2Datatype type)
Mapping between XSD and Java according to http://docs.oracle.com/javaee/7/tutorial/doc/jaxws002.htm
TODO Sprawdzic dwa artykuly o mapowaniu OWL2Java.
|
static ValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueType BigDecimal
public static final ValueType BigInteger
public static final ValueType Boolean
public static final ValueType Byte
public static final ValueType Double
public static final ValueType Expression_OR
public static final ValueType Float
public static final ValueType Formula
public static final ValueType Integer
public static final ValueType Long
public static final ValueType NIL
public static final ValueType Object
public static final ValueType Short
public static final ValueType String
public static final ValueType Symbol
public java.lang.String getName()
public static ValueType getValueTypeFromOWL2Datatype(org.semanticweb.owlapi.vocab.OWL2Datatype type)
type
- public static ValueType 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 static ValueType[] values()
for (ValueType c : ValueType.values()) System.out.println(c);