OWLDataValueImpl.java revision 2
/*
* Created on Oct 30, 2004
*/
/**
* @author Evren Sirin
*/
}
public URI getDatatypeURI() {
return (datatypeURI == null)
? null
}
/* (non-Javadoc)
* @see org.mindswap.owl.OWLDataValue#getLanguage()
*/
public String getLanguage() {
return literal.getLanguage();
}
/* (non-Javadoc)
* @see org.mindswap.owl.OWLDataValue#getLexicalValue()
*/
public String getLexicalValue() {
return literal.getLexicalForm();
}
/* (non-Javadoc)
* @see org.mindswap.owl.OWLDataValue#getValue()
*/
}
public Object getImplementation() {
return literal;
}
}
/* (non-Javadoc)
* @see org.mindswap.owl.OWLValue#isDataValue()
*/
public boolean isDataValue() {
return true;
}
/* (non-Javadoc)
* @see org.mindswap.owl.OWLValue#isIndividual()
*/
public boolean isIndividual() {
return false;
}
}